Type Alias F64Array

Source
pub type F64Array = PrimitiveArray<F64>;

Aliased Type§

struct F64Array {
    bitmap: Bitmap,
    data: Box<[OrderedFloat<f64>]>,
}

Fields§

§bitmap: Bitmap§data: Box<[OrderedFloat<f64>]>

Trait Implementations§

Source§

impl From<&[PrimitiveArray<Float64Type>]> for F64Array

Source§

fn from(arrays: &[Float64Array]) -> Self

Converts to this type from the input type.
Source§

impl From<&[PrimitiveArray<Float64Type>]> for F64Array

Source§

fn from(arrays: &[Float64Array]) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a ArrayImpl> for &'a F64Array

Source§

fn from(array: &'a ArrayImpl) -> Self

Converts to this type from the input type.
Source§

impl From<&PrimitiveArray<Float64Type>> for F64Array

Source§

fn from(array: &Float64Array) -> Self

Converts to this type from the input type.
Source§

impl From<&PrimitiveArray<Float64Type>> for F64Array

Source§

fn from(array: &Float64Array) -> Self

Converts to this type from the input type.
Source§

impl From<ArrayImpl> for F64Array

Source§

fn from(array: ArrayImpl) -> Self

Converts to this type from the input type.