Trait ndarray::RawDataSubst[][src]

pub trait RawDataSubst<A>: RawData {
    type Output: RawData<Elem = A>;
}
Expand description

Array representation trait.

The RawDataSubst trait maps the element type of array storage, while keeping the same kind of storage.

For example, RawDataSubst<B> can map the type OwnedRepr<A> to OwnedRepr<B>.

Associated Types

The resulting array storage of the same kind but substituted element type

Implementors