Iter

Type Alias Iter 

Source
pub type Iter<'a> = Box<dyn Iterator<Item = &'a Expression> + 'a>;
Expand description

An iterator over the values of an Array.

Values of this type are created by the iter method on Array. See its documentation for more.

Aliased Typeยง

pub struct Iter<'a>(/* private fields */);