Type Alias numcodecs::AnyArcArray

source ·
pub type AnyArcArray = AnyArrayBase<OwnedArcRepr<()>>;
Expand description

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

Aliased Type§

enum AnyArcArray {
    U8(ArrayBase<OwnedArcRepr<u8>, Dim<IxDynImpl>>),
    U16(ArrayBase<OwnedArcRepr<u16>, Dim<IxDynImpl>>),
    U32(ArrayBase<OwnedArcRepr<u32>, Dim<IxDynImpl>>),
    U64(ArrayBase<OwnedArcRepr<u64>, Dim<IxDynImpl>>),
    I8(ArrayBase<OwnedArcRepr<i8>, Dim<IxDynImpl>>),
    I16(ArrayBase<OwnedArcRepr<i16>, Dim<IxDynImpl>>),
    I32(ArrayBase<OwnedArcRepr<i32>, Dim<IxDynImpl>>),
    I64(ArrayBase<OwnedArcRepr<i64>, Dim<IxDynImpl>>),
    F32(ArrayBase<OwnedArcRepr<f32>, Dim<IxDynImpl>>),
    F64(ArrayBase<OwnedArcRepr<f64>, Dim<IxDynImpl>>),
}

Variants§