Concat
|
Concatenates strings from the list, inserting given separator between them. |
Exists
|
Return [true] if [f] is returns [true] for any of the characters in the string [s]. |
Explode
|
Changes string into a corresponding list of characters. |
Fold
|
|
ForAll
|
Return [true] if [f] is returns [true] for all of the characters in the string [s]. |
Implode
|
Constructs a string out of a list of characters. |
Iter
|
Call [f] for all characters in [s] in turn. |
IterI
|
Call [f] for all characters in [s] in turn, passing the current index as the additional paramter. |
Map
|
Same as [Implode (List.Map (Explode (s), f))] but a lot faster. |
MapCS
|
Same as [Concat ("", List.Map (Explode (s), f))] but a lot faster. |
SeparatedCalls
|
Calls the given function on elements of given list, appending given separator to string builder between those calls. |
Split
|
Overloaded. Splits the string at positions of occurrence of one of the characters from the given array. |
Equals (inherited from Object) |
|
GetHashCode (inherited from Object) |
|
GetType (inherited from Object) |
|
ToString (inherited from Object) |
Finalize (inherited from Object) |
|
MemberwiseClone (inherited from Object) |
NString Class | Nemerle.Utility Namespace