Type Definition ndarray::Array [] [src]

type Array<A, D> = ArrayBase<Vec<A>, D>;

An array that owns its data uniquely.

Array is the main n-dimensional array type, and it owns all its array elements.

ArrayBase is used to implement both the owned arrays and the views; see its docs for an overview of all array features.

See also: