pub struct Indices<D>where
D: Dimension,{ /* private fields */ }
Expand description
Indices producer and iterable.
Indices
is an NdProducer
that produces the indices of an array shape.
Trait Implementations§
source§impl<D> IntoIterator for Indices<D>where
D: Dimension,
impl<D> IntoIterator for Indices<D>where D: Dimension,
impl<D> Copy for Indices<D>where D: Dimension + Copy,
Auto Trait Implementations§
impl<D> RefUnwindSafe for Indices<D>where D: RefUnwindSafe,
impl<D> Send for Indices<D>
impl<D> Sync for Indices<D>
impl<D> Unpin for Indices<D>where D: Unpin,
impl<D> UnwindSafe for Indices<D>where D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<P> IntoNdProducer for Pwhere
P: NdProducer,
impl<P> IntoNdProducer for Pwhere P: NdProducer,
§type Item = <P as NdProducer>::Item
type Item = <P as NdProducer>::Item
The element produced per iteration.
§type Dim = <P as NdProducer>::Dim
type Dim = <P as NdProducer>::Dim
Dimension type of the producer
type Output = P
source§fn into_producer(self) -> <P as IntoNdProducer>::Output
fn into_producer(self) -> <P as IntoNdProducer>::Output
Convert the value into an
NdProducer
.