rusty-perm 0.2.0

Rusty permutation with no-std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "std")]
pub use std::{
    borrow::Cow,
    cmp::Ordering,
    convert::{TryFrom, TryInto},
    iter::{self, Product},
    mem,
    ops::Mul,
};

#[cfg(not(feature = "std"))]
pub use core::{
    cmp::Ordering,
    convert::{TryFrom, TryInto},
    iter::{self, Product},
    mem,
    ops::Mul,
};