An iterator to create all combination of a given char range.
e.g.:
a
b
c
...
aa
ab
ac
...
The iterator uses an u128 as internal counter. If you need more strings than that, you can use the bigint
feature.
rust
fn main() {
for (i, s) in CharCombinator::default().take(104).enumerate() {
println!("{}: {}", i, s);
}
}