Skip to main content

NdIterMut

Trait NdIterMut 

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

Required Associated Types§

Source

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

Required Methods§

Source

fn nditer_mut(&mut self) -> Self::IterMut<'_, A>

returns a mutable 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> NdIterMut<A, D> for ArrayBase<S, D, A>
where S: DataMut<Elem = A>, D: Dimension,

Source§

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

Source§

fn nditer_mut( &mut self, ) -> <ArrayBase<S, D, A> as NdIterMut<A, D>>::IterMut<'_, A>

Implementors§