Module malachite_base::strings
source · Expand description
Functions for working with [String
]s.
Modules§
- Iterators that generate
String
s without repetition.
Structs§
- Generates
String
s, given an iterator that generatesVec<char>
s.
Traits§
- A trait that provides an ergonomic way to create the string specified by a
Binary
implementation. - A trait that provides an ergonomic way to create the string specified by a
Debug
implementation. - A trait that provides an ergonomic way to create the string specified by a
LowerHex
implementation. - A trait that provides an ergonomic way to create the string specified by an
Octal
implementation. - A trait that provides an ergonomic way to create the string specified by an
UpperHex
implementation.
Functions§
- Returns whether all of the first string slice’s characters are present in the second string slice.
- Sorts the characters of a string slice and returns them in a new
String
. - Takes a string slice’s unique characters and returns them in a new
String
. - Generates
String
s, given an iterator that generatesVec<char>
s.