Crates.io | simple_permutator |
lib.rs | simple_permutator |
version | 0.2.1 |
source | src |
created_at | 2022-03-01 19:08:18.905478 |
updated_at | 2022-03-02 03:20:29.050324 |
description | Simple library to create permutations of a list of values. Eg Permutator::new(&[1,2,3]) creates an iterator that yields [1,2,3], [2,1,3], [2,3,1], [1,3,2], [3,1,2], [3,2,1]. |
homepage | https://etnur.com |
repository | https://github.com/samothx/permutations/ |
max_upload_size | |
id | 541752 |
size | 5,811 |
Simple library to create permutations of values. Permutator::new(&[1,2,3]) creates an iterator that yields [1,2,3], [2,1,3], [2,3,1], [1,3,2], [3,1,2], [3,2,1].