package liquidsoap-lang

  1. Overview
  2. Docs
type regexp = {
  1. descr : string;
  2. flags : [ `i | `g | `s | `m ] list;
  3. regexp : Regexp.t;
}
val all_regexp_flags : [> `g | `i | `m | `s ] list
val string_of_regexp_flag : [< `g | `i | `m | `s ] -> string
val regexp_flag_of_string : string -> [> `g | `i | `m | `s ]
val escape_regex_descr : string -> string
val string_of_regexp : regexp -> string
module RegExp : sig ... end
val test_t : Type.t
val test_fun : Regexp.t -> Lang_core.value
val split_t : Type.t
val split_fun : Regexp.t -> Lang_core.value
val exec_t : Type.t
val exec_fun : Regexp.t -> Lang_core.value
val replace_t : Type.t
val replace_fun : Regexp.t -> Lang_core.value
OCaml

Innovation. Community. Security.