pub fn iter_from_indices<I, V>(
indices: I,
vertices: &[V]
) -> IterFromIndices<'_, <I as IntoIterator>::IntoIter, V> ⓘwhere
I: IntoIterator<Item = usize>,
Expand description
Produce an iterator yielding a vertex for each index yielded by the given indices iterator.