https://github.com/panicbit/rust-closures
https://github.com/panicbit/rust-closures
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/panicbit/rust-closures
- Owner: panicbit
- Created: 2017-07-06T20:12:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T00:07:08.000Z (almost 9 years ago)
- Last Synced: 2025-12-25T21:14:20.267Z (6 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Closures
This crate provides an abstraction for seperating code and state.
Among other things it allows for **recursive closures** and
for trait implementations like `PartialEq` and `Clone`.
See the [examples directory](https://github.com/panicbit/rust-closures/tree/master/examples) for some usage examples.
A nightly version of Rust is required because this crate relies on
[unboxed closures](https://github.com/rust-lang/rust/issues/18101).
# [Documentation](https://docs.rs/closures)