mcurry 0.1.1

Macros for creating curried functions.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Currying macros
//!
//! This library exposes macros for creating [curried functions].
//!
//! [curried functions]: https://en.wikipedia.org/wiki/Currying

#![no_std]

#[macro_use]
mod curry;