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
val capitalize_ascii : string -> string
val uncapitalize_ascii : string -> string
val lowercase_ascii : string -> string