aramid 🧡

Test Docs

Synthetic fibers and Rust.

Getting started

What's the difference between Fibers and Iterators?

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.