NdIter

Trait NdIter 

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

Required Associated Types§

Source

type Iter<'b, T> where T: 'b, 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", so this trait is not object safe.

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> = Iter<'b, T, D> where T: 'b, Self: 'b

Source§

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

Implementors§