Expand description
Iterators that generate String
s without repetition.
Functionsยง
- exhaustive_
fixed_ length_ strings - Generates all [
String
]s of a given length. - exhaustive_
fixed_ length_ strings_ using_ chars - Generates all
String
s of a given length withchar
s from a single iterator. - exhaustive_
strings - Generates all [
String
]s. - exhaustive_
strings_ using_ chars - Generates all [
String
]s withchar
s from a specified iterator. - lex_
fixed_ length_ strings - Generates all [
String
]s of a given length in lexicographic order. - lex_
fixed_ length_ strings_ using_ chars - Generates all [
String
]s of a given length withchar
s from a single iterator, in lexicographic order. - shortlex_
strings - Generates [
String
]s in shortlex order. - shortlex_
strings_ using_ chars - Generates [
String
]s withchar
s from a specified iterator, in shortlex order.