1 2 3 4 5 6 7 8
//! A set of useful traits for your functional needs. #![no_std] mod binary; mod unary; pub use binary::Binary; pub use unary::Unary;