Module Transitioning.String

module String: sig .. end

In OCaml 4.03, many functions f from String have been deprecated in favor of f_ascii, which operate only on the ASCII charset, while the deprecated f knew about iso-8859-1. We use the new names here, so that when support of 4.02.3 is dropped, client code will just have to erase Transitioning. to use directly the stdlib version


val uppercase_ascii : string -> string

4.03

val capitalize_ascii : string -> string

4.03

val uncapitalize_ascii : string -> string

4.03

val lowercase_ascii : string -> string

4.03

val split_on_char : char -> string -> string list

4.04