pub trait FillFromIter<Iter: Iterator> {
// Required method
fn fill_from_iter(&mut self, iter: Iter);
}Expand description
Fill an array with values from an iterator.
Behaviour if self and iter have incompatible sizes
is not determined.
Required Methods§
Sourcefn fill_from_iter(&mut self, iter: Iter)
fn fill_from_iter(&mut self, iter: Iter)
Fill self with values from iter.