Crate combination

Source
Expand description

§What it is

combination is a lib to do math jobs like permutate and combinate data from vec.

use combination::*;
fn test_permutation() {
    let val = permutate::from_vec(&vec![10, 20, 30, 40]);
    for item in val {
       println!("{:?}", item);
    }
}

Re-exports§

pub use combine::Combine;
pub use permutate::Permutate;

Modules§

combine
permutate
v2
Recommend V2 module

Functions§

select_index