Skip to main content

NdIter

Trait NdIter 

Source
pub trait NdIter<A, D>
where D: Dimension,
{ type Iter<'b, T: 'b> where Self: 'b; // Required method fn nditer(&self) -> Self::Iter<'_, A>; }

Required Associated Types§

Source

type Iter<'b, T: 'b> where Self: 'b

Required Methods§

Source

fn nditer(&self) -> Self::Iter<'_, A>

returns an iterator over the weights;

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<A, S, D> NdIter<A, D> for ArrayBase<S, D, A>
where S: Data<Elem = A>, D: Dimension,

Source§

type Iter<'b, T: 'b> = Iter<'b, T, D> where ArrayBase<S, D, A>: 'b

Source§

fn nditer(&self) -> <ArrayBase<S, D, A> as NdIter<A, D>>::Iter<'_, A>

Implementors§