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.