Type Definition ndarray::RcArray[][src]

pub type RcArray<A, D> = ArrayBase<OwnedRcRepr<A>, D>;
👎 Deprecated:

RcArray has been renamed to ArcArray

Expand description

An array where the data has shared ownership and is copy on write.

It can act as both an owner as the data as well as a shared reference (view like).

Note: this type alias is obsolete. See the equivalent ArcArray instead.