polars_arrow::array

Struct MutablePrimitiveArray

Source
pub struct MutablePrimitiveArray<T: NativeType> { /* private fields */ }
Expand description

The Arrow’s equivalent to Vec<Option<T>> where T is byte-size (e.g. i32). Converting a MutablePrimitiveArray into a PrimitiveArray is O(1).

Implementations§

Source§

impl<'a, T: NativeType> MutablePrimitiveArray<T>

Source

pub fn iter(&'a self) -> ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>>

Returns an iterator over Option<T>

Source

pub fn values_iter(&'a self) -> Iter<'a, T>

Returns an iterator of T

Source§

impl<T: NativeType> MutablePrimitiveArray<T>

Source

pub fn new() -> Self

Creates a new empty MutablePrimitiveArray.

Source

pub fn with_capacity(capacity: usize) -> Self

Creates a new MutablePrimitiveArray with a capacity.

Source

pub fn try_new( dtype: ArrowDataType, values: Vec<T>, validity: Option<MutableBitmap>, ) -> PolarsResult<Self>

The canonical method to create a MutablePrimitiveArray out of its internal components.

§Implementation

This function is O(1).

§Errors

This function errors iff:

  • The validity is not None and its length is different from values’s length
  • The dtype’s crate::datatypes::PhysicalType is not equal to [crate::datatypes::PhysicalType::Primitive(T::PRIMITIVE)]
Source

pub fn into_inner(self) -> (ArrowDataType, Vec<T>, Option<MutableBitmap>)

Extract the low-end APIs from the MutablePrimitiveArray.

Source

pub fn apply_values<F: Fn(&mut [T])>(&mut self, f: F)

Applies a function f to the values of this array, cloning the values iff they are being shared with others

This is an API to use clone-on-write

§Implementation

This function is O(f) if the data is not being shared, and O(N) + O(f) if it is being shared (since it results in a O(N) memcopy).

§Panics

This function panics iff f panics

Source§

impl<T: NativeType> MutablePrimitiveArray<T>

Source

pub fn with_capacity_from(capacity: usize, dtype: ArrowDataType) -> Self

Creates a new MutablePrimitiveArray from a capacity and ArrowDataType.

Source

pub fn reserve(&mut self, additional: usize)

Reserves additional entries.

Source

pub fn push_value(&mut self, value: T)

Source

pub fn push(&mut self, value: Option<T>)

Adds a new value to the array.

Source

pub fn pop(&mut self) -> Option<T>

Pop a value from the array. Note if the values is empty, this method will return None.

Source

pub fn extend_constant(&mut self, additional: usize, value: Option<T>)

Extends the MutablePrimitiveArray with a constant

Source

pub fn extend_trusted_len<P, I>(&mut self, iterator: I)
where P: Borrow<T>, I: TrustedLen<Item = Option<P>>,

Extends the MutablePrimitiveArray from an iterator of trusted len.

Source

pub unsafe fn extend_trusted_len_unchecked<P, I>(&mut self, iterator: I)
where P: Borrow<T>, I: Iterator<Item = Option<P>>,

Extends the MutablePrimitiveArray from an iterator of trusted len.

§Safety

The iterator must be trusted len.

Source

pub fn extend_trusted_len_values<I>(&mut self, iterator: I)
where I: TrustedLen<Item = T>,

Extends the MutablePrimitiveArray from an iterator of values of trusted len. This differs from extend_trusted_len which accepts in iterator of optional values.

Source

pub unsafe fn extend_trusted_len_values_unchecked<I>(&mut self, iterator: I)
where I: Iterator<Item = T>,

Extends the MutablePrimitiveArray from an iterator of values of trusted len. This differs from extend_trusted_len_unchecked which accepts in iterator of optional values.

§Safety

The iterator must be trusted len.

Source

pub fn extend_from_slice(&mut self, items: &[T])

Extends the MutablePrimitiveArray from a slice

Source

pub fn to(self, dtype: ArrowDataType) -> Self

Changes the arrays’ ArrowDataType, returning a new MutablePrimitiveArray. Use to change the logical type without changing the corresponding physical Type.

§Implementation

This operation is O(1).

Source

pub fn into_arc(self) -> Arc<dyn Array>

Converts itself into an Array.

Source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the MutablePrimitiveArray to fit its current length.

Source

pub fn capacity(&self) -> usize

Returns the capacity of this MutablePrimitiveArray.

Source

pub fn freeze(self) -> PrimitiveArray<T>

Source

pub fn clear(&mut self)

Clears the array, removing all values.

Note that this method has no effect on the allocated capacity of the array.

Source

pub fn with_freeze<K, F: FnOnce(&PrimitiveArray<T>) -> K>(&mut self, f: F) -> K

Apply a function that temporarily freezes this MutableArray into a PrimitiveArray.

Source§

impl<T: NativeType> MutablePrimitiveArray<T>

Accessors

Source

pub fn values(&self) -> &Vec<T>

Returns its values.

Source

pub fn values_mut_slice(&mut self) -> &mut [T]

Returns a mutable slice of values.

Source§

impl<T: NativeType> MutablePrimitiveArray<T>

Setters

Source

pub fn set(&mut self, index: usize, value: Option<T>)

Sets position index to value. Note that if it is the first time a null appears in this array, this initializes the validity bitmap (O(N)).

§Panic

Panics iff index >= self.len().

Source

pub unsafe fn set_unchecked(&mut self, index: usize, value: Option<T>)

Sets position index to value. Note that if it is the first time a null appears in this array, this initializes the validity bitmap (O(N)).

§Safety

Caller must ensure index < self.len()

Source

pub fn set_validity(&mut self, validity: Option<MutableBitmap>)

Sets the validity.

§Panic

Panics iff the validity’s len is not equal to the existing values’ length.

Source

pub fn set_values(&mut self, values: Vec<T>)

Sets values.

§Panic

Panics iff the values’ length is not equal to the existing validity’s len.

Source§

impl<T: NativeType> MutablePrimitiveArray<T>

Source

pub fn from_slice<P: AsRef<[T]>>(slice: P) -> Self

Creates a MutablePrimitiveArray from a slice of values.

Source

pub unsafe fn from_trusted_len_iter_unchecked<I, P>(iterator: I) -> Self
where P: Borrow<T>, I: Iterator<Item = Option<P>>,

Creates a MutablePrimitiveArray from an iterator of trusted length.

§Safety

The iterator must be TrustedLen. I.e. size_hint().1 correctly reports its length.

Source

pub fn from_trusted_len_iter<I, P>(iterator: I) -> Self
where P: Borrow<T>, I: TrustedLen<Item = Option<P>>,

Source

pub unsafe fn try_from_trusted_len_iter_unchecked<E, I, P>( iter: I, ) -> Result<Self, E>
where P: Borrow<T>, I: IntoIterator<Item = Result<Option<P>, E>>,

Creates a MutablePrimitiveArray from an fallible iterator of trusted length.

§Safety

The iterator must be TrustedLen. I.e. that size_hint().1 correctly reports its length.

Source

pub fn try_from_trusted_len_iter<E, I, P>(iterator: I) -> Result<Self, E>
where P: Borrow<T>, I: TrustedLen<Item = Result<Option<P>, E>>,

Creates a MutablePrimitiveArray from an fallible iterator of trusted length.

Source

pub fn from_trusted_len_values_iter<I: TrustedLen<Item = T>>(iter: I) -> Self

Creates a new MutablePrimitiveArray out an iterator over values

Source

pub fn from_vec(values: Vec<T>) -> Self

Creates a (non-null) MutablePrimitiveArray from a vector of values. This does not have memcopy and is the fastest way to create a PrimitiveArray.

Source

pub unsafe fn from_trusted_len_values_iter_unchecked<I: Iterator<Item = T>>( iter: I, ) -> Self

Creates a new MutablePrimitiveArray from an iterator over values

§Safety

The iterator must be TrustedLen. I.e. that size_hint().1 correctly reports its length.

Trait Implementations§

Source§

impl<T: Clone + NativeType> Clone for MutablePrimitiveArray<T>

Source§

fn clone(&self) -> MutablePrimitiveArray<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + NativeType> Debug for MutablePrimitiveArray<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: NativeType> Default for MutablePrimitiveArray<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T: NativeType> Extend<Option<T>> for MutablePrimitiveArray<T>

Source§

fn extend<I: IntoIterator<Item = Option<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<T: NativeType> From<ArrowDataType> for MutablePrimitiveArray<T>

Source§

fn from(dtype: ArrowDataType) -> Self

Converts to this type from the input type.
Source§

impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>

Source§

fn from(other: MutablePrimitiveArray<T>) -> Self

Converts to this type from the input type.
Source§

impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for MutablePrimitiveArray<T>

Source§

fn from(slice: P) -> Self

Converts to this type from the input type.
Source§

impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for MutablePrimitiveArray<T>

Source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
Source§

impl<T: NativeType> MutableArray for MutablePrimitiveArray<T>

Source§

fn len(&self) -> usize

The length of the array.
Source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
Source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
Source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
Source§

fn dtype(&self) -> &ArrowDataType

The ArrowDataType of the array.
Source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
Source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
Source§

fn push_null(&mut self)

Adds a new null element to the array.
Source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
Source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
Source§

fn is_empty(&self) -> bool

Whether the array is empty.
Source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
Source§

impl<T: NativeType> PartialEq for MutablePrimitiveArray<T>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: NativeType> Pushable<Option<T>> for MutablePrimitiveArray<T>

Source§

type Freeze = PrimitiveArray<T>

Source§

fn reserve(&mut self, additional: usize)

Source§

fn push(&mut self, value: Option<T>)

Source§

fn len(&self) -> usize

Source§

fn push_null(&mut self)

Source§

fn extend_constant(&mut self, additional: usize, value: Option<T>)

Source§

fn extend_null_constant(&mut self, additional: usize)

Source§

fn freeze(self) -> Self::Freeze

Source§

fn with_capacity(capacity: usize) -> Self

Source§

fn extend_n(&mut self, n: usize, iter: impl Iterator<Item = T>)

Source§

impl<T: NativeType> TryExtend<Option<T>> for MutablePrimitiveArray<T>

Source§

fn try_extend<I: IntoIterator<Item = Option<T>>>( &mut self, iter: I, ) -> PolarsResult<()>

This is infallible and is implemented for consistency with all other types

Source§

impl<T: NativeType> TryExtendFromSelf for MutablePrimitiveArray<T>

Source§

fn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>

Tries to extend itself with elements from other, failing only on overflow.
Source§

impl<T: NativeType> TryPush<Option<T>> for MutablePrimitiveArray<T>

Source§

fn try_push(&mut self, item: Option<T>) -> PolarsResult<()>

This is infalible and is implemented for consistency with all other types

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.