Type Definition ndarray::ArrayView [] [src]

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

A lightweight 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 specific Methods for Array Views.