simple_permutator

Crates.iosimple_permutator
lib.rssimple_permutator
version0.2.1
sourcesrc
created_at2022-03-01 19:08:18.905478
updated_at2022-03-02 03:20:29.050324
descriptionSimple 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].
homepagehttps://etnur.com
repositoryhttps://github.com/samothx/permutations/
max_upload_size
id541752
size5,811
Thomas Runte (samothx)

documentation

README

permutations

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].

Commit count: 7

cargo fmt