[][src]Trait arrow::array::PrimitiveArrayOps

pub trait PrimitiveArrayOps<T: ArrowPrimitiveType> {
    fn values(&self) -> Buffer;
fn value(&self, i: usize) -> T::Native; }

Common operations for primitive types, including numeric types and boolean type.

Required methods

fn values(&self) -> Buffer

fn value(&self, i: usize) -> T::Native

Loading content...

Implementors

impl PrimitiveArrayOps<BooleanType> for BooleanArray[src]

impl<T: ArrowNumericType> PrimitiveArrayOps<T> for PrimitiveArray<T>[src]

impl<T: ArrowPrimitiveType> PrimitiveArrayOps<T> for PrimitiveArray<T>[src]

Loading content...