Trait apollo_utils::iterators::IntoElementwise
source · pub trait IntoElementwise<A, B: Into<A>>: IntoIterator {
// Required method
fn into_elementwise(self) -> Vec<A>;
}Required Methods§
sourcefn into_elementwise(self) -> Vec<A>
fn into_elementwise(self) -> Vec<A>
Performs into on each element of the iterator and collects the results into a Vec.