Type Definition ndarray::RcArray [] [src]

type RcArray<A, D> = ArrayBase<Rc<Vec<A>>, D>;

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).