package zed
-
zed
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val get : t -> int -> CamomileLibrary.UChar.t
val init : int -> (int -> CamomileLibrary.UChar.t) -> t
val length : t -> int
val look : t -> index -> CamomileLibrary.UChar.t
val iter : (CamomileLibrary.UChar.t -> unit) -> t -> unit
module Buf : sig ... end
type ur_text = text
The type of original texts.
type ur_index = index
The type of indexes of original texts.
refer t i j
returns the part of t
from i
until j
. The character pointed by j
is not included in the result. If j
is equal to i
or located before j
, the result is an empty string.
context t
returns the tuple (s, i, j)
such that t = refer s i j
.