pub type Iter<'a> = Box<dyn Iterator<Item = &'a Expression> + 'a>;
An iterator over the values of an Array.
Array
Values of this type are created by the iter method on Array. See its documentation for more.
iter
struct Iter<'a>(/* private fields */);