Synthetic fibers and Rust.
To try the library out, simply add it to your project's dependencies, by running the following Cargo command in your project directory:
sh
cargo add aramid
Or add the following line to your Cargo.toml:
toml
aramid = "0.2.3"
The documentation is available online at docs.rs.
./examples
directory, i.e. a cool implementation of a monster
patrolling its dungeon πΎπΉοΈ.Iterators can be fibers too! The difference is mainly
in the fact that Fibers have two return types: Yield
and Output
. A nice
trick is to make a fiber yield some values, like an iterator, and then create
another fiber as its final output. Weaving fibers like this can turn a bunch of
them into a powerful finite state machine.