module Buffer:sig
..end
Buffer
module of the standard
library except that it works with rope.type
t
val create : unit -> t
val add : t -> CamomileLibrary.UChar.t -> unit
add buffer x
add x
at the end of buffer
.val contents : t -> Zed_rope.rope
contents buffer
returns the contents of buffer
as a
rope.val reset : t -> unit
reset buffer
resets buffer
to its initial state.