Crates.io | mco-gen |
lib.rs | mco-gen |
version | 0.1.1 |
source | src |
created_at | 2022-02-16 07:17:36.287499 |
updated_at | 2023-12-05 12:48:48.214242 |
description | Stackfull Generator Library in Rust |
homepage | https://github.com/co-rs/mco.git |
repository | https://github.com/co-rs/mco.git |
max_upload_size | |
id | 533133 |
size | 91,024 |
rust stackful generator library
[dependencies]
generator = "0.7"
use mco_gen::{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);
}
}
1
2
3
5
8
13
21
34
55
89
144
233
basic send/yield with message support
generator cancel support
yield_from support
panic inside generator support
stack size tune support
scoped static type support
basic coroutine interface support
stable rust support
we can easily port python library based on generator into rust
coroutine framework running on multi thread
This crate supports below platforms, welcome to contribute with other arch and platforms
This project is licensed under either of the following, at your option: