fp-macros 0.8.0

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
1
2
3
4
5
6
7
8
//! Applicative do-notation macro.
//!
//! Provides the [`a_do!`](crate::a_do) macro for applicative syntax that desugars
//! into [`map`] / [`lift2`]–[`lift5`] calls, matching PureScript `ado` notation.

pub mod codegen;

pub use codegen::a_do_worker;