├── .gitignore ├── COPYRIGHT ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── readme.md └── src ├── lib.rs └── permutation.rs /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target/ 3 | doc/ 4 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/readme.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/permutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremysalwen/rust-permutations/HEAD/src/permutation.rs --------------------------------------------------------------------------------