Module type Sosa.MINIMALISTIC_MUTABLE_STRING

module type MINIMALISTIC_MUTABLE_STRING = sig .. end

type character 
type t 
val empty : t
val make : int ->
character ->
t
val length : t -> int
val compare : t ->
t -> int
val compare_char : character ->
character -> int
val get : t ->
int -> character
val set : t ->
int -> character -> unit
val blit : src:t ->
src_pos:int ->
dst:t -> dst_pos:int -> len:int -> unit
val is_whitespace : character -> bool
include Sosa.NATIVE_CONVERSIONS