从函数中返回 lambdas

从函数返回 lambdas(或闭包)可能很棘手,因为它们实现了特征,因此很少知道它们的确切大小。

// Box in the return type moves the function from the stack to the heap
fn curried_adder(a: i32) -> Box<Fn(i32) -> i32> {
    // 'move' applies move semantics to a, so it can outlive this function call
    Box::new(move |b| a + b)
}

println!("3 + 4 = {}", curried_adder(3)(4));

这显示:3 + 4 = 7