You can search for identifiers within the package.
in-package search v0.2.0
zed
Zed_rope.Buffer
This module is similar of the Buffer module of the standard library except that it works with rope.
Buffer
type t
Type of rope buffers.
val create : unit -> t
Create a new empty buffer.
val add : t -> CamomileLibrary.UChar.t -> unit
add buffer x add x at the end of buffer.
add buffer x
x
buffer
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