Trait ArrayBuilderExt

Source
pub trait ArrayBuilderExt: ArrayBuilder {
    // Provided methods
    fn append_scalar_value(&mut self, value: ScalarValue) -> VortexResult<()> { ... }
    fn append_scalar(&mut self, scalar: &Scalar) -> VortexResult<()> { ... }
}

Provided Methods§

Source

fn append_scalar_value(&mut self, value: ScalarValue) -> VortexResult<()>

A generic function to append a scalar value to the builder.

Source

fn append_scalar(&mut self, scalar: &Scalar) -> VortexResult<()>

A generic function to append a scalar to the builder.

Implementors§