rust generator library
use the dev version on master
toml
[dependencies.generator]
git = "https://github.com/Xudong-Huang/generator-rs.git"
```rust
extern crate generator;
unsafe fn fib(a: u32, b: u32) -> u32 { let (mut a, mut b) = (a, b); while b < 200 { std::mem::swap(&mut a, &mut b); b = a + b; yield!(b); } return 10000; }
fn main() {
let g = generator!(fib(0, 1));
for i in g {
println!("{}", i);
}
}
```
This crate supports platforms in
It depends on the contex libaray, currently the context library need some patch to compile the generator lib