[][src]Trait fwd_ad::traits::RWAble

pub trait RWAble<F>: ROAble<F> {
    fn rw(&mut self) -> &mut [F];
}

A trait implemented by types which can provide write access to their content of scalars F.

All types that are RWAble<F> must be ROAble<F>.

Implemented for all types that are std::convert::AsMut<[F]> and ROAble<F>.

Required methods

fn rw(&mut self) -> &mut [F]

Loading content...

Implementors

impl<F, T> RWAble<F> for T where
    T: AsMut<[F]>,
    T: ROAble<F>, 
[src]

Loading content...