module String.Cap:Capabilities for strings.sig..end
This modules provides the same set of features as String, but
with the added twist that strings can be made read-only or write-only.
Read-only strings may then be safely shared and distributed.
There is no loss of performance involved.
type 'a t
If 'a contains [`Read], the contents of the string may be read.
If 'a contains [`Write], the contents of the string may be written.
Other (user-defined) capabilities may be added without loss of
performance or features. For instance, a string could be labelled
[`Read | `UTF8] to state that it contains UTF-8 encoded data and
may be used only for reading. Conversely, a string labelled with
[] (i.e. nothing) can neither be read nor written. It can only
be compared for textual equality using OCaml's built-in compare
or for physical equality using OCaml's built-in ==.
val length : 'a t -> intval is_empty : 'a t -> boolval get : [> `Read ] t -> int -> charString.get s n returns character number n in string s.
The first character is character number 0.
The last character is character number String.length s - 1.
You can also write s.[n] instead of String.get s n.
Raise Invalid_argument "index out of bounds"
if n is outside the range 0 to (String.length s - 1).
val set : [> `Write ] t -> int -> char -> unitString.set s n c modifies string s in place,
replacing the character number n by c.
You can also write s.[n] <- c instead of String.set s n c.
Raise Invalid_argument "index out of bounds"
if n is outside the range 0 to (String.length s - 1).val create : int -> 'a tString.create n returns a fresh string of length n.
The string initially contains arbitrary characters.
Raise Invalid_argument if n < 0 or n > Sys.max_string_length.val of_string : string -> 'a tval to_string : [ `Read | `Write ] t -> stringval read_only : [> `Read ] t ->
[ `Read ] tval write_only : [> `Write ] t ->
[ `Write ] tval make : int -> char -> 'a tString.make n c returns a fresh string of length n,
filled with the character c.
Raise Invalid_argument if n < 0 or n > Sys.max_string_length.val init : int -> (int -> char) -> 'a tinit l f returns the string of length l with the chars
f 0 , f 1 , f 2 ... f (l-1).val enum : [> `Read ] t -> char Enum.t
val of_enum : char Enum.t -> 'a tval backwards : [> `Read ] t -> char Enum.tval of_backwards : char Enum.t -> 'a tval of_list : char list -> 'a tval to_list : [> `Read ] t -> char listval of_int : int -> 'a tval of_float : float -> 'a tval of_char : char -> 'a tval to_int : [> `Read ] t -> intInvalid_string if the string does not represent an integer.val to_float : [> `Read ] t -> floatval map : (char -> char) ->
[> `Read ] t -> 'a tmap f s returns a string where all characters c in s have been
replaced by f c. *val fold_left : ('a -> char -> 'a) -> 'a -> [> `Read ] t -> 'afold_left f a s is
f (... (f (f a s.[0]) s.[1]) ...) s.[n-1]val fold_right : (char -> 'a -> 'a) -> [> `Read ] t -> 'a -> 'afold_right f s b is
f s.[0] (f s.[1] (... (f s.[n-1] b) ...))val filter : (char -> bool) ->
[> `Read ] t -> 'a tfilter f s returns a copy of string s in which only
characters c such that f c = true remain.val filter_map : (char -> char option) ->
[> `Read ] t -> 'a tfilter_map f s calls (f a0) (f a1).... (f an) where a0..an are
the characters of s. It returns the string of characters ci such as
f ai = Some ci (when f returns None, the corresponding element of
s is discarded).val iter : (char -> unit) -> [> `Read ] t -> unitString.iter f s applies function f in turn to all
the characters of s. It is equivalent to
f s.[0]; f s.[1]; ...; f s.[String.length s - 1]; ().val index : [> `Read ] t -> char -> intString.index s c returns the position of the leftmost
occurrence of character c in string s.
Raise Not_found if c does not occur in s.val rindex : [> `Read ] t -> char -> intString.rindex s c returns the position of the rightmost
occurrence of character c in string s.
Raise Not_found if c does not occur in s.val index_from : [> `Read ] t -> int -> char -> intString.index, but start
searching at the character position given as second argument.
String.index s c is equivalent to String.index_from s 0 c.val rindex_from : [> `Read ] t -> int -> char -> intString.rindex, but start
searching at the character position given as second argument.
String.rindex s c is equivalent to
String.rindex_from s (String.length s - 1) c.val contains : [> `Read ] t -> char -> boolString.contains s c tests if character c
appears in the string s.val contains_from : [> `Read ] t -> int -> char -> boolString.contains_from s start c tests if character c
appears in the substring of s starting from start to the end
of s.
Raise Invalid_argument if start is not a valid index of s.val rcontains_from : [> `Read ] t -> int -> char -> boolString.rcontains_from s stop c tests if character c
appears in the substring of s starting from the beginning
of s to index stop.
Raise Invalid_argument if stop is not a valid index of s.val find : [> `Read ] t ->
[> `Read ] t -> intfind s x returns the starting index of the string x
within the string s or raises Invalid_string if x
is not a substring of s.val find_from : [> `Read ] t ->
int -> [> `Read ] t -> intfind_from s ofs x behaves as find s x but starts searching
at offset ofs. find s x is equivalent to find_from s 0 x.val rfind : [> `Read ] t ->
[> `Read ] t -> intrfind s x returns the starting index of the last occurrence
of string x within string s.
Note This implementation is optimized for short strings.
Raises Invalid_string if x is not a substring of s.
val rfind_from : [> `Read ] t ->
int -> [> `Read ] t -> intrfind_from s ofs x behaves as rfind s x but starts searching
at offset ofs. rfind s x is equivalent to rfind_from s (String.length s - 1) x.val ends_with : [> `Read ] t ->
[> `Read ] t -> boolends_with s x returns true if the string s is ending with x.val starts_with : [> `Read ] t ->
[> `Read ] t -> boolstarts_with s x return true if s is starting with x.val exists : [> `Read ] t ->
[> `Read ] t -> boolexists str sub returns true if sub is a substring of str or
false otherwise.val lchop : [> `Read ] t -> 'a tval rchop : [> `Read ] t -> 'a tval trim : [> `Read ] t -> 'a tval quote : [> `Read ] t -> string
quote ro"foo" returns ro"\"foo\""
quote ro"\"foo\"" returns ro"\\\"foo\\\""
etc.
val left : [> `Read ] t ->
int -> 'a tleft r len returns the string containing the len first characters of rval right : [> `Read ] t ->
int -> 'a tleft r len returns the string containing the len last characters of rval head : [> `Read ] t ->
int -> 'a t
val tail : [> `Read ] t ->
int -> 'a ttail r pos returns the string containing all but the pos first characters of rval strip : ?chars:[> `Read ] t ->
[> `Read ] t -> 'a tval uppercase : [> `Read ] t -> 'a tval lowercase : [> `Read ] t -> 'a tval capitalize : [> `Read ] t -> 'a tval uncapitalize : [> `Read ] t -> 'a tval copy : [> `Read ] t -> 'a tval sub : [> `Read ] t ->
int -> int -> 'a tString.sub s start len returns a fresh string of length len,
containing the characters number start to start + len - 1
of string s.
Raise Invalid_argument if start and len do not
designate a valid substring of s; that is, if start < 0,
or len < 0, or start + len > String.length s.val fill : [> `Write ] t -> int -> int -> char -> unitString.fill s start len c modifies string s in place,
replacing the characters number start to start + len - 1
by c.
Raise Invalid_argument if start and len do not
designate a valid substring of s.val blit : [> `Read ] t ->
int -> [> `Write ] t -> int -> int -> unitString.blit src srcoff dst dstoff len copies len characters
from string src, starting at character number srcoff, to
string dst, starting at character number dstoff. It works
correctly even if src and dst are the same string,
and the source and destination chunks overlap.
Raise Invalid_argument if srcoff and len do not
designate a valid substring of src, or if dstoff and len
do not designate a valid substring of dst.val concat : [> `Read ] t ->
[> `Read ] t list ->
'a tString.concat sep sl concatenates the list of strings sl,
inserting the separator string sep between each.val escaped : [> `Read ] t -> 'a tval replace_chars : (char -> [> `Read ] t) ->
[> `Read ] t -> 'a treplace_chars f s returns a string where all chars c of s have been
replaced by the string returned by f c.val replace : str:[> `Read ] t ->
sub:[> `Read ] t ->
by:[> `Read ] t ->
bool * 'a treplace ~str ~sub ~by returns a tuple constisting of a boolean
and a string where the first occurrence of the string sub
within str has been replaced by the string by. The boolean
is true if a subtitution has taken place.val repeat : [> `Read ] t ->
int -> 'a trepeat s n returns s ^ s ^ ... ^ sval split : [> `Read ] t ->
[> `Read ] t ->
'a t * 'b t
split s sep splits the string s between the first
occurrence of sep.
raises Invalid_string if the separator is not found.
val rsplit : [> `Read ] t -> string -> string * stringrsplit s sep splits the string s between the last
occurrence of sep.
raises Invalid_string if the separator is not found.val nsplit : [> `Read ] t ->
[> `Read ] t ->
'a t listnsplit s sep splits the string s into a list of strings
which are separated by sep.
nsplit "" _ returns the empty list.val splice : [ `Read | `Write ] t ->
int -> int -> [> `Read ] t -> stringString.splice s off len rep cuts out the section of s
indicated by off and len and replaces it by repval join : [> `Read ] t ->
[> `Read ] t list ->
'a tconcatval slice : ?first:int ->
?last:int ->
[> `Read ] t -> 'a tslice ?first ?last s returns a "slice" of the string
which corresponds to the characters s.[first],
s.[first+1], ..., s[last-1]. Note that the character at
index last is not included! If first is omitted it
defaults to the start of the string, i.e. index 0, and if
last is omitted is defaults to point just past the end of
s, i.e. length s. Thus, slice s is equivalent to
copy s.
Negative indexes are interpreted as counting from the end of
the string. For example, slice ~last:-2 s will return the
string s, but without the last two characters.
This function never raises any exceptions. If the
indexes are out of bounds they are automatically clipped.
val explode : [> `Read ] t -> char listexplode s returns the list of characters in the string s.val implode : char list -> 'a timplode cs returns a string resulting from concatenating
the characters in the list cs.val compare : [> `Read ] t ->
[> `Read ] t -> intStandard.compare. Along with the type t, this function compare
allows the module String to be passed as argument to the functors
Set.Make and Map.Make.val icompare : [> `Read ] t ->
[> `Read ] t -> intval print : 'a Extlib.InnerIO.output -> [> `Read ] t -> unitval println : 'a Extlib.InnerIO.output -> [> `Read ] t -> unitval print_quoted : 'a Extlib.InnerIO.output -> [> `Read ] t -> unit
print_quoted stdout "foo" prints "foo" (with the quotes)
print_quoted stdout "\"bar\"" prints "\"bar\"" (with the quotes)
val t_printer : [> `Read ] t Value_printer.t