ComprehensionContext

Type Alias ComprehensionContext 

Source
pub type ComprehensionContext = Vec<(Identifier, Expr)>;
Expand description

Represents the bindings in a comprehension expression.

Each element consists of a name, and an expression which evaluates to an iterable, where the name will be bound to each element of the iterable in the comprehension body.

Aliased Typeยง

pub struct ComprehensionContext { /* private fields */ }