fp_library/
types.rs

1//! Data types and their corresponding implementations.
2
3pub mod arc_fn;
4pub mod endomorphism;
5pub mod option;
6pub mod pair;
7pub mod rc_fn;
8pub mod result;
9pub mod solo;
10pub mod string;
11pub mod vec;
12
13pub use self::endomorphism::Endomorphism;
14pub use self::pair::Pair;
15pub use self::solo::Solo;