package camomile
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=41e02d124c3fa29ea511110d2c6532de
sha512=b0ae3d921f65390e8ec88a04901dd097b568db9f9ae70fb328e9d3ddb2dd8922b9a8e8da9ace91ad9cb5f6a1310ae5b6ba502e287d6c828f4d60622289316ac8
doc/camomile.lib/CamomileLib/UChar/index.html
Module CamomileLib.UChar
Unicode (ISO-UCS) characters.
This module implements Unicode (actually ISO-UCS) characters. All 31-bit code points are allowed.
val char_of : t -> charchar_of u returns the Latin-1 representation of u. If u can not be represented by Latin-1, raises Out_of_range
val of_char : char -> tof_char c returns the Unicode character of the Latin-1 character c
val code : t -> intcode u returns the Unicode code number of u. If the value can not be represented by a positive integer, raise Out_of_range
val chr : int -> tcode n returns the Unicode character with the code number n. If n >= 2^32 or n < 0, raises invalid_arg
val uint_code : t -> intuint_code u returns the Unicode code number of u. The returned int is unsigned, that is, on 32-bits platforms, the sign bit is used for storing the 31-th bit of the code number.
val chr_of_uint : int -> tchr_of_uint n returns the Unicode character of the code number n. n is interpreted as unsigned, that is, on 32-bits platforms, the sign bit is treated as the 31-th bit of the code number. If n exceed 31-bits values, then raise invalid_arg.
compare u1 u2 returns, a value > 0 if u1 has a larger Unicode code number than u2, 0 if u1 and u2 are the same Unicode character, a value < 0 if u1 has a smaller Unicode code number than u2.
type uchar = tAliases of type t
val int_of : uchar -> intAlias of uint_code
val of_int : int -> ucharAlias of chr_of_uint