module UTF8:sig..end
typet =string
exception Malformed_code
validate s
successes if s is valid UTF-8, otherwise raises Malformed_code.
Other functions assume strings are valid UTF-8, so it is prudent
to test their validity for strings from untrusted origins.val validate : t -> unitval get : t -> int -> Main.Type.UChar.tget s n returns n-th Unicode character of s.
The call requires O(n)-time.
init len f
returns a new string which contains len Unicode characters.
The i-th Unicode character is initialized by f i
val init : int -> (int -> Main.Type.UChar.t) -> tlength s returns the number of Unicode characters contained in sval length : t -> int0typeindex =int
nth s n returns the position of the n-th Unicode character.
The call requires O(n)-timeval nth : t -> int -> indexval first : t -> indexval last : t -> indexlook s i
returns the Unicode character of the location i in the string s.val look : t -> index -> Main.Type.UChar.tout_of_range s i
tests whether i is a position inside of s.val out_of_range : t -> index -> boolcompare_index s i1 i2 returns
a value < 0 if i1 is the position located before i2,
0 if i1 and i2 points the same location,
a value > 0 if i1 is the position located after i2.val compare_index : t -> index -> index -> intnext s i
returns the position of the head of the Unicode character
located immediately after i.
If i is inside of s, the function always successes.
If i is inside of s and there is no Unicode character after i,
the position outside s is returned.
If i is not inside of s, the behaviour is unspecified.val next : t -> index -> indexprev s i
returns the position of the head of the Unicode character
located immediately before i.
If i is inside of s, the function always successes.
If i is inside of s and there is no Unicode character before i,
the position outside s is returned.
If i is not inside of s, the behaviour is unspecified.val prev : t -> index -> indexmove s i n
returns n-th Unicode character after i if n >= 0,
n-th Unicode character before i if n < 0.
If there is no such character, the result is unspecified.val move : t -> index -> int -> indexiter f s
applies f to all Unicode characters in s.
The order of application is same to the order
of the Unicode characters in s.val iter : (Main.Type.UChar.t -> unit) -> t -> unitcompare s1 s2 returns
a positive integer if s1 > s2,
0 if s1 = s2,
a negative integer if s1 < s2.val compare : t -> t -> intmodule Buf:sig..endwith type buf = Buffer.t