package comby-kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type match_kind =
  1. | Exact
  2. | Fuzzy
type t = {
  1. match_kind : match_kind;
  2. significant_whitespace : bool;
  3. disable_substring_matching : bool;
  4. match_newline_toplevel : bool;
  5. fresh : unit -> string;
  6. substitute_in_place : bool;
}
val create : ?disable_substring_matching:bool -> ?match_kind:match_kind -> ?significant_whitespace:bool -> ?match_newline_toplevel:bool -> ?fresh:(unit -> string) -> ?substitute_in_place:bool -> unit -> t