module Builder:sig..end
Efficient construction of vectors using mutable, one-by-one appending of elements
type'avector ='a Vector.t
type '_ t
val empty : unit -> 'a tCreates new empty builder.
val copy : 'a t -> 'a tCreate copy of this builder.
val put : 'a t -> 'a -> unitPut element to builder.
val clear : 'a t -> unitClear builder.
val result : 'a t -> 'a vectorGet vector of current elements in builder.