Build Status Build status Current Crates.io Version Document License

Generator-rs

rust generator library

you need the nightly rust compiler to compile it

use the dev version on master

toml [dependencies.generator] git = "https://github.com/Xudong-Huang/generator-rs.git"

Usage

```rust

[macro_use]

extern crate generator; use generator::Gn;

fn main() { let g = Gn::newscoped(|mut s| { let (mut a, mut b) = (0, 1); while b < 200 { std::mem::swap(&mut a, &mut b); b = a + b; s.yield(b); } done!(); });

for i in g {
    println!("{}", i);
}

} ```

Output

1 2 3 5 8 13 21 34 55 89 144 233

Goals

based on this basic library

Notices