Module Re_emacs

include module type of struct include Re.Emacs end
exception Parse_error
exception Not_supported

Errors that can be raised during the parsing of the regular expression

val re : ?case:bool -> string -> (Re__.Ast.cset, [ `Cased | `Uncased ]) Re__.Ast.gen @@ portable

Parsing of an Emacs-style regular expression

val re_result : ?case:bool -> string -> ((Re__.Ast.cset, [ `Cased | `Uncased ]) Re__.Ast.gen, [ `Not_supported | `Parse_error ]) result @@ portable
val compile : (Re__.Ast.cset, [ `Cased | `Uncased ]) Re__.Ast.gen -> Re__.Compile.re @@ portable

Regular expression compilation

val compile_pat : ?case:bool -> string -> Re__.Compile.re @@ portable

Same as Core.compile

val re_no_emacs : case:bool -> string -> (Re__.Ast.cset, [ `Cased | `Uncased ]) Re__.Ast.gen @@ portable