| Value | Description |
val concat : string -> seq<string> -> string |
Return a new string made by concatenating the given strings
with separator 'sep', i.e. 'a1 + sep + ... + sep + aN'
|
val exists : (char -> bool) -> string -> bool |
Test if any character of the string satisfies the given predicate.
|
val for_all : (char -> bool) -> string -> bool |
Test if all characters in the string satisfy the given predicate.
|
val iter : (char -> unit) -> string -> unit |
Apply the given function to each character in the string
|
val map : (char -> char) -> string -> string |
Build a new string whose characters are the results of applying the given function
to each of the characters of the input string.
|
val map_concat : (char -> string) -> string -> string |
Build a new string whose characters are the results of applying the given function
to each of the characters of the input string and concatenating the resulting
strings.
|