char_combinator 1.1.2

An iterator to create all combination of a given char range
Documentation
# char_combinator

An iterator to create all combination of a given char range.

e.g.:
```
a
b
c
...
aa
ab
ac
...
```

## Features

The iterator uses an u128 as internal counter. If you need more strings than that, you can use the `bigint` feature.

## Example
```rust
fn main() {
    for (i, s) in CharCombinator::default().take(104).enumerate() {
        println!("{}: {}", i, s);
    }
}
```