karpal-profunctor 0.1.0

Profunctor hierarchy (Profunctor, Strong, Choice) for the Industrial Algebra ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod choice;
#[cfg(feature = "alloc")]
pub mod fn_profunctor;
pub mod profunctor;
pub mod strong;

pub use choice::Choice;
#[cfg(feature = "alloc")]
pub use fn_profunctor::FnP;
pub use profunctor::{HKT2, Profunctor};
pub use strong::Strong;