Expand description
Functions for working with Strings.
Modules§
- exhaustive
- Iterators that generate
Strings without repetition.
Structs§
- Strings
From Char Vecs - Generates
Strings, given an iterator that generatesVec<char>s.
Traits§
- ToBinary
String - A trait that provides an ergonomic way to create the string specified by a
Binaryimplementation. - ToDebug
String - A trait that provides an ergonomic way to create the string specified by a
Debugimplementation. - ToLower
HexString - A trait that provides an ergonomic way to create the string specified by a
LowerHeximplementation. - ToOctal
String - A trait that provides an ergonomic way to create the string specified by an
Octalimplementation. - ToUpper
HexString - A trait that provides an ergonomic way to create the string specified by an
UpperHeximplementation.
Functions§
- string_
is_ subset - Returns whether all of the first string slice’s characters are present in the second string slice.
- string_
sort - Sorts the characters of a string slice and returns them in a new
String. - string_
unique - Takes a string slice’s unique characters and returns them in a new
String. - strings_
from_ char_ vecs - Generates
Strings, given an iterator that generatesVec<char>s.