Expand description
New functions for &(mut) dyn [ExactSizeIterator].
Functions§
- new
- Create a dyn slice from a slice of a type that implements
ExactSizeIterator. - new_mut
- Create a mutable dyn slice from a mutable slice of a type that implements
ExactSizeIterator.
Type Aliases§
- Dyn
- An alias for
dynExactSizeIterator. - Slice
- An alias for
&dyn [ExactSizeIterator](DynSlice<Dyn>). - Slice
Mut - An alias for
&mut dyn [ExactSizeIterator](DynSliceMut<Dyn>).