pub struct PrimitiveArray(/* private fields */);
Implementations§
Source§impl PrimitiveArray
impl PrimitiveArray
pub fn new(buffer: Buffer, ptype: PType, validity: Validity) -> Self
pub fn from_vec<T: NativePType>(values: Vec<T>, validity: Validity) -> Self
pub fn from_nullable_vec<T: NativePType>(values: Vec<Option<T>>) -> Self
Sourcepub fn from_bytes(bytes: Bytes, validity: Validity) -> Self
pub fn from_bytes(bytes: Bytes, validity: Validity) -> Self
Creates a new array of type U8
pub fn validity(&self) -> Validity
pub fn buffer(&self) -> &Buffer
pub fn maybe_null_slice<T: NativePType>(&self) -> &[T]
Sourcepub fn into_maybe_null_slice<T: NativePType + ArrowNativeType>(self) -> Vec<T>
pub fn into_maybe_null_slice<T: NativePType + ArrowNativeType>(self) -> Vec<T>
Convert the array into a mutable vec of the given type. If possible, this will be zero-copy.
pub fn get_as_cast<T: NativePType>(&self, idx: usize) -> T
pub fn reinterpret_cast(&self, ptype: PType) -> Self
pub fn patch<P: AsPrimitive<usize>, T: NativePType + ArrowNativeType>( self, positions: &[P], values: &[T], values_validity: Validity, ) -> VortexResult<Self>
pub fn into_buffer(self) -> Buffer
Trait Implementations§
Source§impl<T: NativePType> Accessor<T> for PrimitiveArray
impl<T: NativePType> Accessor<T> for PrimitiveArray
Source§impl<T: NativePType> ArrayAccessor<T> for PrimitiveArray
impl<T: NativePType> ArrayAccessor<T> for PrimitiveArray
Source§fn with_iterator<F, R>(&self, f: F) -> VortexResult<R>
fn with_iterator<F, R>(&self, f: F) -> VortexResult<R>
Iterate over each element of the array, in-order. Read more
Source§impl ArrayVariants for PrimitiveArray
impl ArrayVariants for PrimitiveArray
fn as_primitive_array(&self) -> Option<&dyn PrimitiveArrayTrait>
fn as_null_array(&self) -> Option<&dyn NullArrayTrait>
fn as_null_array_unchecked(&self) -> &dyn NullArrayTrait
fn as_bool_array(&self) -> Option<&dyn BoolArrayTrait>
fn as_bool_array_unchecked(&self) -> &dyn BoolArrayTrait
fn as_primitive_array_unchecked(&self) -> &dyn PrimitiveArrayTrait
fn as_utf8_array(&self) -> Option<&dyn Utf8ArrayTrait>
fn as_utf8_array_unchecked(&self) -> &dyn Utf8ArrayTrait
fn as_binary_array(&self) -> Option<&dyn BinaryArrayTrait>
fn as_binary_array_unchecked(&self) -> &dyn BinaryArrayTrait
fn as_struct_array(&self) -> Option<&dyn StructArrayTrait>
fn as_struct_array_unchecked(&self) -> &dyn StructArrayTrait
fn as_list_array(&self) -> Option<&dyn ListArrayTrait>
fn as_list_array_unchecked(&self) -> &dyn ListArrayTrait
fn as_extension_array(&self) -> Option<&dyn ExtensionArrayTrait>
fn as_extension_array_unchecked(&self) -> &dyn ExtensionArrayTrait
Source§impl AsRef<ArrayData> for PrimitiveArray
impl AsRef<ArrayData> for PrimitiveArray
Source§impl CastFn<PrimitiveArray> for PrimitiveEncoding
impl CastFn<PrimitiveArray> for PrimitiveEncoding
fn cast(&self, array: &PrimitiveArray, dtype: &DType) -> VortexResult<ArrayData>
Source§impl Clone for PrimitiveArray
impl Clone for PrimitiveArray
Source§fn clone(&self) -> PrimitiveArray
fn clone(&self) -> PrimitiveArray
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PrimitiveArray
impl Debug for PrimitiveArray
Source§impl FillForwardFn<PrimitiveArray> for PrimitiveEncoding
impl FillForwardFn<PrimitiveArray> for PrimitiveEncoding
fn fill_forward(&self, array: &PrimitiveArray) -> VortexResult<ArrayData>
Source§impl FilterFn<PrimitiveArray> for PrimitiveEncoding
impl FilterFn<PrimitiveArray> for PrimitiveEncoding
Source§fn filter(
&self,
array: &PrimitiveArray,
mask: FilterMask,
) -> VortexResult<ArrayData>
fn filter( &self, array: &PrimitiveArray, mask: FilterMask, ) -> VortexResult<ArrayData>
Filter an array by the provided predicate.
Source§impl<T: NativePType> From<Vec<T>> for PrimitiveArray
impl<T: NativePType> From<Vec<T>> for PrimitiveArray
Source§impl IntoArrayData for PrimitiveArray
impl IntoArrayData for PrimitiveArray
fn into_array(self) -> ArrayData
Source§impl IntoCanonical for PrimitiveArray
impl IntoCanonical for PrimitiveArray
fn into_canonical(self) -> VortexResult<Canonical>
Source§impl PrimitiveArrayTrait for PrimitiveArray
impl PrimitiveArrayTrait for PrimitiveArray
Source§impl ScalarAtFn<PrimitiveArray> for PrimitiveEncoding
impl ScalarAtFn<PrimitiveArray> for PrimitiveEncoding
fn scalar_at( &self, array: &PrimitiveArray, index: usize, ) -> VortexResult<Scalar>
Source§impl SearchSortedFn<PrimitiveArray> for PrimitiveEncoding
impl SearchSortedFn<PrimitiveArray> for PrimitiveEncoding
fn search_sorted( &self, array: &PrimitiveArray, value: &Scalar, side: SearchSortedSide, ) -> VortexResult<SearchResult>
fn search_sorted_usize( &self, array: &PrimitiveArray, value: usize, side: SearchSortedSide, ) -> VortexResult<SearchResult>
Source§fn search_sorted_many(
&self,
array: &Array,
values: &[Scalar],
side: SearchSortedSide,
) -> VortexResult<Vec<SearchResult>>
fn search_sorted_many( &self, array: &Array, values: &[Scalar], side: SearchSortedSide, ) -> VortexResult<Vec<SearchResult>>
Bulk search for many values.
fn search_sorted_usize_many( &self, array: &Array, values: &[usize], side: SearchSortedSide, ) -> VortexResult<Vec<SearchResult>>
Source§impl SliceFn<PrimitiveArray> for PrimitiveEncoding
impl SliceFn<PrimitiveArray> for PrimitiveEncoding
Source§fn slice(
&self,
array: &PrimitiveArray,
start: usize,
stop: usize,
) -> VortexResult<ArrayData>
fn slice( &self, array: &PrimitiveArray, start: usize, stop: usize, ) -> VortexResult<ArrayData>
Return a zero-copy slice of an array, between
start
(inclusive) and end
(exclusive).
If start >= stop, returns an empty array of the same type as self
.
Assumes that start or stop are out of bounds, may panic otherwise.Source§impl StatisticsVTable<PrimitiveArray> for PrimitiveEncoding
impl StatisticsVTable<PrimitiveArray> for PrimitiveEncoding
Source§fn compute_statistics(
&self,
array: &PrimitiveArray,
stat: Stat,
) -> VortexResult<StatsSet>
fn compute_statistics( &self, array: &PrimitiveArray, stat: Stat, ) -> VortexResult<StatsSet>
Compute the requested statistic. Can return additional stats.
Source§impl SubtractScalarFn<PrimitiveArray> for PrimitiveEncoding
impl SubtractScalarFn<PrimitiveArray> for PrimitiveEncoding
fn subtract_scalar( &self, array: &PrimitiveArray, to_subtract: &Scalar, ) -> VortexResult<ArrayData>
Source§impl TakeFn<PrimitiveArray> for PrimitiveEncoding
impl TakeFn<PrimitiveArray> for PrimitiveEncoding
fn take( &self, array: &PrimitiveArray, indices: &ArrayData, options: TakeOptions, ) -> VortexResult<ArrayData>
Source§impl<'a> TryFrom<&'a ArrayData> for &'a PrimitiveArray
impl<'a> TryFrom<&'a ArrayData> for &'a PrimitiveArray
Source§type Error = VortexError
type Error = VortexError
The type returned in the event of a conversion error.
Source§fn try_from(data: &'a ArrayData) -> VortexResult<Self>
fn try_from(data: &'a ArrayData) -> VortexResult<Self>
Performs the conversion.
Source§impl TryFrom<ArrayData> for PrimitiveArray
impl TryFrom<ArrayData> for PrimitiveArray
Source§type Error = VortexError
type Error = VortexError
The type returned in the event of a conversion error.
Source§fn try_from(data: ArrayData) -> VortexResult<Self>
fn try_from(data: ArrayData) -> VortexResult<Self>
Performs the conversion.
Source§impl ValidityVTable<PrimitiveArray> for PrimitiveEncoding
impl ValidityVTable<PrimitiveArray> for PrimitiveEncoding
fn is_valid(&self, array: &PrimitiveArray, index: usize) -> bool
fn logical_validity(&self, array: &PrimitiveArray) -> LogicalValidity
Source§impl VisitorVTable<PrimitiveArray> for PrimitiveEncoding
impl VisitorVTable<PrimitiveArray> for PrimitiveEncoding
fn accept( &self, array: &PrimitiveArray, visitor: &mut dyn ArrayVisitor, ) -> VortexResult<()>
impl ArrayTrait for PrimitiveArray
Auto Trait Implementations§
impl !Freeze for PrimitiveArray
impl !RefUnwindSafe for PrimitiveArray
impl Send for PrimitiveArray
impl Sync for PrimitiveArray
impl Unpin for PrimitiveArray
impl !UnwindSafe for PrimitiveArray
Blanket Implementations§
Source§impl<T> ArrayEncodingRef for T
impl<T> ArrayEncodingRef for T
fn encoding(&self) -> &'static dyn EncodingVTable
Source§impl<A> ArrayNBytes for A
impl<A> ArrayNBytes for A
Source§impl<T> ArrayStatistics for T
impl<T> ArrayStatistics for T
fn statistics(&self) -> &dyn Statistics
fn inherit_statistics(&self, parent: &dyn Statistics)
Source§impl<A> ArrayValidity for A
impl<A> ArrayValidity for A
fn is_valid(&self, index: usize) -> bool
fn logical_validity(&self) -> LogicalValidity
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoArrayVariant for Twhere
T: IntoCanonical,
impl<T> IntoArrayVariant for Twhere
T: IntoCanonical,
fn into_null(self) -> Result<NullArray, VortexError>
fn into_bool(self) -> Result<BoolArray, VortexError>
fn into_primitive(self) -> Result<PrimitiveArray, VortexError>
fn into_struct(self) -> Result<StructArray, VortexError>
fn into_varbinview(self) -> Result<VarBinViewArray, VortexError>
fn into_extension(self) -> Result<ExtensionArray, VortexError>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more