Type Definition ndarray::RcArray

source ·
pub type RcArray<A, D> = ArrayBase<OwnedRcRepr<A>, D>;
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.