Module Main.Type.UnicodeString.Type.Buf


module Buf: sig .. end

type buf 
create n creates the buffer. n is used to determine the initial size of the buffer. The meaning of n differs from modules to modules.
val create : int -> buf
val contents : buf -> Main.Type.UnicodeString.Type.t
val clear : buf -> unit
val reset : buf -> unit
val add_char : buf -> Main.Type.UChar.t -> unit
val add_string : buf ->
Main.Type.UnicodeString.Type.t -> unit
val add_buffer : buf ->
buf -> unit