package camomile
Install
Dune Dependency
Authors
Maintainers
Sources
md5=41e02d124c3fa29ea511110d2c6532de
sha512=b0ae3d921f65390e8ec88a04901dd097b568db9f9ae70fb328e9d3ddb2dd8922b9a8e8da9ace91ad9cb5f6a1310ae5b6ba502e287d6c828f4d60622289316ac8
doc/camomile.lib/CamomileLib/UCS4/index.html
Module CamomileLib.UCS4
UCS4 encoded string. The type is the bigarray of 32-bit integers. Bigarray.cma or Bigarray.cmxa must be linked when this module is used.
type t = (int32, Bigarray.int32_elt, Bigarray.c_layout) Bigarray.Array1.t
val validate : t -> unit
validate s
If s
is valid UCS4 then successes otherwise raises Malformed_code
. Other functions assume strings are valid UCS4, so it is prudent to test their validity for strings from untrusted origins.
All functions below assume strings are valid UCS4. If not, the result is unspecified.
init len f
returns a new string which contains len
Unicode characters. The i-th Unicode character is initialised by f i
val length : t -> int
length s
returns the number of Unicode characters contained in s
Positions in the string represented by the number of characters from the head. The location of the first character is 0
nth s n
returns the position of the n
-th Unicode character. The call requires O(n)-time
look s i
returns the Unicode character of the location i
in the string s
.
out_of_range s i
tests whether i
points the valid position of s
.
compare_aux s i1 i2
returns If i1
is the position located before i2
, a value < 0, If i1
and i2
points the same location, 0, If i1
is the position located after i2
, a value > 0.
next s i
returns the position of the head of the Unicode character located immediately after i
. If i
is a valid position, the function always success. If i
is a valid position and there is no Unicode character after i
, the position outside s
is returned. If i
is not a valid position, the behaviour is undefined.
prev s i
returns the position of the head of the Unicode character located immediately before i
. If i
is a valid position, the function always success. If i
is a valid position and there is no Unicode character before i
, the position outside s
is returned. If i
is not a valid position, the behaviour is undefined.
move s i n
: If n >= 0, returns n
-th Unicode character after i
. If n < 0, returns -n
-th Unicode character before i
. If there is no such character, the result is unspecified.
iter f s
: Apply f
to all Unicode characters in s
. The order of application is same to the order in the Unicode characters in s
.
module Buf : sig ... end
Buffer module for UCS4