Type Definition ndarray::ArrayViewMut [] [src]

type ArrayViewMut<'a, A, D> = ArrayBase<ViewRepr<&'a mut A>, D>;

A lightweight read-write array view.

An array view represents an array or a part of it, created from an iterator, subview or slice of an array.

Array views have all the methods of an array (see ArrayBase).

See also Methods Specific To Array Views