fp_library/types.rs
1//! Data types and their corresponding implementations.
2
3pub mod arc_fn;
4pub mod endofunction;
5pub mod endomorphism;
6pub mod identity;
7pub mod lazy;
8pub mod once_cell;
9pub mod once_lock;
10pub mod option;
11pub mod pair;
12pub mod rc_fn;
13pub mod result;
14pub mod string;
15pub mod vec;
16
17pub use self::endofunction::Endofunction;
18pub use self::endomorphism::Endomorphism;
19pub use self::identity::Identity;
20pub use self::lazy::Lazy;
21pub use self::pair::Pair;