pub type IntoIter = Box<dyn Iterator<Item = Expression>>;Expand description
An owning iterator over the values of an Array.
Values of this type are created by the into_iter method on Array (provided by the
IntoIterator trait). See its documentation for more.