function 0.3.1

A set of useful traits for your functional needs
Documentation
1
2
3
4
5
6
7
8
9
10
//! A set of useful traits for your functional needs.
#![no_std]

mod binary;
mod tuple;
mod unary;

pub use binary::Binary;
pub use tuple::Tuple;
pub use unary::Unary;