val sexp_of_t : t -> Sexp.tval create : int -> tcreate nreturns a fresh buffer, initially empty. Thenparameter is the initial size of the internal storage medium that holds the buffer contents. That storage is automatically reallocated when more thanncharacters are stored in the buffer, but shrinks back toncharacters whenresetis called.For best performance,
nshould be of the same order of magnitude as the number of characters that are expected to be stored in the buffer (for instance, 80 for a buffer that holds one output line). Nothing bad will happen if the buffer grows beyond that limit, however. In doubt, taken = 16for instance.
val contents : t -> stringReturn a copy of the current contents of the buffer. The buffer itself is unchanged.
val contents_bytes : t -> bytes
include Blit.S_distinct with type src := t with type dst := bytes
val blit : src:t -> src_pos:int -> dst:bytes -> dst_pos:int -> len:int -> unitval blito : src:t -> ?src_pos:int -> ?src_len:int -> dst:bytes -> ?dst_pos:int -> unit -> unitval unsafe_blit : src:t -> src_pos:int -> dst:bytes -> dst_pos:int -> len:int -> unitval sub : t -> pos:int -> len:int -> bytesval subo : ?pos:int -> ?len:int -> t -> bytes
module To_string : Blit.S_to_string with type t := tval nth : t -> int -> charGets the (zero-based) n-th character of the buffer. Raises
Invalid_argumentif index out of bounds.
val length : t -> intReturns the number of characters currently contained in the buffer.
val clear : t -> unitEmpties the buffer.
val reset : t -> unitEmpties the buffer and deallocates the internal storage holding the buffer contents, replacing it with the initial internal storage of length
nthat was allocated bycreate n. For long-lived buffers that may have grown a lot,resetallows faster reclamation of the space used by the buffer.
val add_char : t -> char -> unitadd_char b cappends the charactercat the end of the bufferb.
val add_string : t -> string -> unitadd_string b sappends the stringsat the end of the bufferb.
val add_substring : t -> string -> pos:int -> len:int -> unitadd_substring b s pos lentakeslencharacters from offsetposin stringsand appends them at the end of the bufferb.
val add_bytes : t -> bytes -> unitadd_bytes b sappends the bytessat the end of the bufferb.
val add_subbytes : t -> bytes -> pos:int -> len:int -> unitadd_subbytes b s pos lentakeslencharacters from offsetposin bytessand appends them at the end of the bufferb.