arrow::tensor

Type Alias Int64Tensor

Source
pub type Int64Tensor<'a> = Tensor<'a, Int64Type>;
Expand description

Tensor of type Int64Type

Aliased Type§

struct Int64Tensor<'a> {
    data_type: DataType,
    buffer: Buffer,
    shape: Option<Vec<usize>>,
    strides: Option<Vec<usize>>,
    names: Option<Vec<&'a str>>,
    _marker: PhantomData<Int64Type>,
}

Fields§

§data_type: DataType§buffer: Buffer§shape: Option<Vec<usize>>§strides: Option<Vec<usize>>§names: Option<Vec<&'a str>>§_marker: PhantomData<Int64Type>