tree: e081c5569fbf67746bf04e8d0b64438729cfc6e5 [path history] [tgz]
  1. examples/
  2. src/
  3. tests/
  4. .cargo-checksum.json
  5. build.rs
  6. Cargo.lock
  7. Cargo.toml
  8. LICENSE-APACHE
  9. LICENSE-MIT
  10. OWNERS
  11. README.md
third_party/rust_crates/vendor/generator-0.7.5/README.md

Build Status Current Crates.io Version Document

Generator-rs

rust stackful generator library

[dependencies]
generator = "0.7"

Usage

use generator::{done, Gn};

fn main() {
    let g = Gn::new_scoped(|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

  • [x] basic send/yield with message support
  • [x] generator cancel support
  • [x] yield_from support
  • [x] panic inside generator support
  • [x] stack size tune support
  • [x] scoped static type support
  • [x] basic coroutine interface support
  • [x] stable rust support

based on this basic library

  • we can easily port python library based on generator into rust
  • coroutine framework running on multi thread

Notices

  • This crate supports below platforms, welcome to contribute with other arch and platforms

    • x86_64 Linux
    • x86_64 macOS
    • x86_64 Windows
    • x86_64 Fuchsia
    • aarch64 Linux
    • aarch64 macOS
    • aarch64 Fuchsia

License

This project is licensed under either of the following, at your option: