You can search for identifiers within the package.
in-package search v0.2.0
zed
Zed_rope.Buffer
type t
Type of rope buffers.
val create : unit -> t
Create a new empty buffer.
val add : t -> Zed_char.t -> unit
add buffer zChar add zChar at the end of buffer.
add buffer zChar
zChar
buffer
val add_uChar : t -> CamomileLibrary.UChar.t -> unit
add buffer uChar add uChar at the end of buffer.
add buffer uChar
uChar
val add_rope : t -> rope -> unit
add buffer rope add rope at the end of buffer.
add buffer rope
rope
val add_string : t -> Zed_string.t -> unit
add buffer str add str at the end of buffer.
add buffer str
str
val contents : t -> rope
contents buffer returns the contents of buffer as a rope.
contents buffer
val reset : t -> unit
reset buffer resets buffer to its initial state.
reset buffer