This crate allows using macros to automatically create closure like types/values.
This works by implementing the Fn* traits for a struct containing all the values captured form the environment.
Because of restrictions of declarative macros the used syntax is less than ideal, but it is a lot better than manual implementations of the Fn* traits.
For details of the Syntax see: const_closure
.
This crate requires a nightly compiler.
```rust
use constclosure::constclosure;
const FROMCLOSURE: i32 = { let base = 5; let calc = constclosure!([base: i32] (offset: i32) -> i32 { base + offset }); calc(-2) }; asserteq!(FROMCLOSURE, 3) ```
raldone01 and onestacked are the primary authors and maintainers of this library.
This project is released under either:
at your choosing.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.