CCStringLabels.Subval make : string -> pos:int -> len:int -> tval full : string -> tFull string.
val copy : t -> stringMake a copy of the substring.
val underlying : t -> stringval get : t -> int -> charget s i gets the i-th element, or fails.
include S with type t := tval length : t -> intReturn the length (number of characters) of the given string.
Like String.blit. Compatible with the -safe-string option.
val fold : f:('a -> char -> 'a) -> init:'a -> t -> 'aFold on chars by increasing index.
val to_list : t -> char listReturn the list of characters contained in the string.
val pp : Format.formatter -> t -> unitPrint the string within quotes.
Renamed from print since 2.0.