cutlass
.add
Example (/examples/add.rs):``` rust use auto_curry::curry;
fn add(a: i32, b: i32) -> i32 { a + b }
fn main() { assert_eq!(add(1)(2), 3);
println!("{} = {}", add(1)(2), 3);
} ```
The add function in the example above expands exactly to:
rust
fn add(a: i32) -> impl Fn(i32) {
move |b| a + b
}
As far as I am aware, this is the most performant expansion in stable rust.
impl_trait_in_fn_trait_return
to be able to significantly
optimize curried functions.