Crate lazy_seq

Source
Expand description

§Lazy Seq

lazy_seq is a crate containing tools for lazily evaluated collections, specifically Seq which is a collection of lazily evaluated functions, and Lazy, which is the primitive used for lazy evaluation.

Macros§

seq
Constructs a Seq from a literal in a similar way that vec! does for Vec.

Structs§

Lazy
Stores an operation which can be evaluated when required.
Seq
A lazily evaluated sequence of functions.