fp-macros 0.7.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
9
10
11
12
//! Monadic do-notation macro.
//!
//! Provides the [`m_do!`](crate::m_do) macro for flat monadic syntax that desugars
//! into nested [`bind`] calls, matching Haskell/PureScript `do` notation.

pub mod codegen;
pub mod input;

pub use {
	codegen::m_do_worker,
	input::DoInput,
};