gear_combos 1.0.4

Attempts to make getting combinations of things easier with the use of gears and simple numeric states!
Documentation
1
2
3
4
5
6
7
8
9
10
11
Attempts to make getting combinations of things easier with the use of gears and simple numeric states!


# Example

```
use gear_combos::*;

let mut gears = vec![Gear::new(2),Gear::new(2)];
let combos = get_gears_combinations(&mut gears);
assert_eq!(vec![vec![0,0],vec![1,0],vec![0,1],vec![1,1]],combos);
```