fp_library/lib.rs
1//! A functional programming library for Rust featuring your favourite higher-kinded types and type classes.
2//!
3//! # Module Structure
4//!
5//! * `classes`: Type classes (traits).
6//! * `types`: Data types and their implementations.
7//! * `functions`: Helper functions.
8//! * `brands`, `hkt`, `macros`: Infrastructure.
9
10pub mod brands;
11pub mod classes;
12pub mod functions;
13pub mod hkt;
14pub mod macros;
15pub mod types;