Skip to main content

TemporalArrayV

Struct TemporalArrayV 

Source
pub struct TemporalArrayV {
    pub array: TemporalArray,
    pub offset: usize,
    /* private fields */
}
Expand description

§TemporalArrayView

Read-only, zero-copy view over a [offset .. offset + len) window of a TemporalArray.

§Purpose

  • Return an indexable subrange without cloning buffers.
  • Optionally cache per-window null counts for faster repeated passes.

§Behaviour

  • Supports 32-bit and 64-bit datetime storage behind TemporalArray.
  • Provides upcast helpers - get_i64 and get_i32.
  • Further slicing yields another borrowed view.

§Fields

  • array: backing TemporalArray (enum over temporal types).
  • offset: starting index into the backing array.
  • len: logical number of elements in the view.
  • null_count: cached Option<usize> for this window (internal).

§Notes

  • Not thread-safe due to Cell. Create per-thread views with slice.
  • Use to_temporal_array to materialise the window.

Fields§

§array: TemporalArray

The outer array that this view is derived from - we retain a reference to it. Importantly, this is the full array - not the view, and thus should not be accessed as though it were the view subset.

§offset: usize

The index offset from 0 that for where this view starts from the outer array

Implementations§

Source§

impl TemporalArrayV

Source

pub fn new(array: TemporalArray, offset: usize, len: usize) -> Self

Creates a new TemporalArrayView with the given offset and length.

Source

pub fn new_nc( array: TemporalArray, offset: usize, len: usize, null_count: usize, ) -> Self

Creates a new TemporalArrayView with a precomputed null count.

Source

pub fn is_empty(&self) -> bool

Returns true if the view is empty.

Source

pub fn get_i64(&self, i: usize) -> Option<i64>

Returns the value at logical index i within the window as i64 (upcasts i32 variant).

Source

pub fn get_i32(&self, i: usize) -> Option<i32>

Returns the value at logical index i as i32 (None for Datetime64).

Source

pub fn slice(&self, offset: usize, len: usize) -> Self

Returns a sliced TemporalArrayView from the current view.

Source

pub fn len(&self) -> usize

Returns the length of the window

Source

pub fn inner_array(&self) -> Array

Returns the full backing array wrapped as an Array enum, ignoring the view’s offset and length.

Use this to access inner array methods. The returned array is the unwindowed original.

Source

pub fn to_temporal_array(&self) -> TemporalArray

Converts the view into an owned TemporalArray for the window.

If the view covers the entire backing array, returns a cheap Arc clone of the original variant. Otherwise deep-copies the window via slice_clone through inner_array.

Source

pub fn end(&self) -> usize

Returns the end index of the view.

Source

pub fn as_tuple(&self) -> (TemporalArray, usize, usize)

Returns the view as a tuple (array, offset, len)

Source

pub fn null_count(&self) -> usize

Returns the number of nulls in the view.

Source

pub fn has_nulls(&self) -> bool

Returns true when the windowed view holds at least one null.

Reads through null_count, so the cached value is trusted when set and the full popcount is only paid on the first call that observes this view.

Source

pub fn null_mask_view(&self) -> Option<BitmaskV>

Returns the null mask as a windowed BitmaskView.

Source

pub fn set_null_count(&self, count: usize) -> Result<(), usize>

Sets the cached null count for the view.

Trait Implementations§

Source§

impl Clone for TemporalArrayV

Source§

fn clone(&self) -> TemporalArrayV

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Concatenate for TemporalArrayV

Source§

fn concat(self, other: Self) -> Result<Self, MinarrowError>

Concatenates two temporal array views by materialising both to owned temporal arrays, concatenating them, and wrapping the result back in a view.

§Notes
  • This operation copies data from both views to create owned temporal arrays.
  • The resulting view has offset=0 and length equal to the combined length.
Source§

impl DatetimeOps for TemporalArrayV

Available on crate feature datetime_ops only.
Source§

fn year(&self) -> IntegerArray<i32>

Extracts the year component from all datetime values.
Source§

fn month(&self) -> IntegerArray<i32>

Extracts the month component (1-12) from all datetime values.
Source§

fn day(&self) -> IntegerArray<i32>

Extracts the day of month (1-31) from all datetime values.
Source§

fn hour(&self) -> IntegerArray<i32>

Extracts the hour component (0-23) from all datetime values.
Source§

fn minute(&self) -> IntegerArray<i32>

Extracts the minute component (0-59) from all datetime values.
Source§

fn second(&self) -> IntegerArray<i32>

Extracts the second component (0-59) from all datetime values.
Source§

fn weekday(&self) -> IntegerArray<i32>

Extracts the weekday (1=Sunday, 2=Monday, …, 7=Saturday) from all datetime values.
Source§

fn day_of_year(&self) -> IntegerArray<i32>

Extracts the day of year (1-366) from all datetime values.
Source§

fn iso_week(&self) -> IntegerArray<i32>

Extracts the ISO week number (1-53) from all datetime values.
Source§

fn quarter(&self) -> IntegerArray<i32>

Extracts the quarter (1-4) from all datetime values.
Source§

fn week_of_year(&self) -> IntegerArray<i32>

Extracts the week of year (0-53) from all datetime values. Week 0 contains days before the first Sunday.
Source§

fn is_leap_year(&self) -> BooleanArray<()>

Returns boolean array indicating whether each datetime’s year is a leap year.
Source§

fn add_duration(&self, duration: Duration) -> Result<Self, MinarrowError>

Adds a duration to all datetime values in the array.
Source§

fn sub_duration(&self, duration: Duration) -> Result<Self, MinarrowError>

Subtracts a duration from all datetime values in the array.
Source§

fn add_days(&self, days: i64) -> Result<Self, MinarrowError>

Adds a number of days to all datetime values.
Source§

fn add_months(&self, months: i32) -> Result<Self, MinarrowError>

Adds a number of months to all datetime values.
Source§

fn add_years(&self, years: i32) -> Result<Self, MinarrowError>

Adds a number of years to all datetime values.
Source§

fn diff( &self, other: &Self, unit: TimeUnit, ) -> Result<IntegerArray<i64>, MinarrowError>

Calculate the duration between this datetime array and another. Returns an IntegerArray representing the difference in the specified unit.
Source§

fn abs_diff( &self, other: &Self, unit: TimeUnit, ) -> Result<IntegerArray<i64>, MinarrowError>

Calculate the absolute duration between elements (always positive).
Source§

fn is_before(&self, other: &Self) -> Result<BooleanArray<()>, MinarrowError>

Compares this array with another, returning a boolean array indicating where values in self are before values in other.
Source§

fn is_after(&self, other: &Self) -> Result<BooleanArray<()>, MinarrowError>

Returns a boolean array indicating where values are after other.
Source§

fn between( &self, start: &Self, end: &Self, ) -> Result<BooleanArray<()>, MinarrowError>

Returns a boolean array indicating where values fall within the range [start, end].
Source§

fn truncate(&self, unit: &str) -> Result<Self, MinarrowError>

Truncate/floor datetime values to the start of the specified unit.
Source§

fn us(&self) -> Self

Truncate to microsecond boundaries.
Source§

fn ms(&self) -> Self

Truncate to millisecond boundaries.
Source§

fn sec(&self) -> Self

Truncate to second boundaries.
Source§

fn min(&self) -> Self

Truncate to minute boundaries.
Source§

fn hr(&self) -> Self

Truncate to hour boundaries.
Source§

fn week(&self) -> Self

Truncate to week boundaries (Sunday 00:00:00).
Source§

fn cast_time_unit(&self, new_unit: TimeUnit) -> Result<Self, MinarrowError>

Cast this array to a different TimeUnit.
Source§

impl Debug for TemporalArrayV

Source§

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

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

impl Display for TemporalArrayV

Source§

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

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

impl From<Array> for TemporalArrayV

Source§

fn from(array: Array) -> Self

Converts to this type from the input type.
Source§

impl From<ArrayV> for TemporalArrayV

Source§

fn from(view: ArrayV) -> Self

Converts an ArrayView to a TemporalArrayView, panicking if the array is not temporal.

Source§

impl From<TemporalArray> for TemporalArrayV

Source§

fn from(array: TemporalArray) -> Self

Converts to this type from the input type.
Source§

impl From<TemporalArrayV> for ArrayV

Available on crate features views and datetime only.

TemporalArrayView -> ArrayView

Converts by wrapping the inner TemporalArray as Array::TemporalArray.

Source§

fn from(view: TemporalArrayV) -> Self

Converts to this type from the input type.
Source§

impl From<TemporalArrayV> for Value

Available on crate features views and datetime only.

Wrap a TemporalArrayV as Value::ArrayView. The view’s offset and length are preserved; the inner TemporalArray flows through Array::TemporalArray.

Source§

fn from(v: TemporalArrayV) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for TemporalArrayV

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 Shape for TemporalArrayV

Source§

fn shape(&self) -> ShapeDim

Returns arbitrary Shape dimension for any data shape
Source§

fn shape_1d(&self) -> usize

Returns the first dimension shape Read more
Source§

fn shape_2d(&self) -> (usize, usize)

Returns the first and second dimension shapes Read more
Source§

fn shape_3d(&self) -> (usize, usize, usize)

Returns the first, second and third dimension shapes Read more
Source§

fn shape_4d(&self) -> (usize, usize, usize, usize)

Returns the first, second, third and fourth dimension shapes Read more
Source§

impl TryFrom<Value> for TemporalArrayV

Available on crate features views and datetime only.
Source§

type Error = MinarrowError

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

fn try_from(v: Value) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl StructuralPartialEq for TemporalArrayV

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, dest: *mut u8)

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

impl<T> CustomValue for T
where T: Any + Send + Sync + Clone + PartialEq + Debug,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Downcasts the type as Any
Source§

fn deep_clone(&self) -> Arc<dyn CustomValue>

Returns a deep clone of the object. Read more
Source§

fn eq_box(&self, other: &(dyn CustomValue + 'static)) -> bool

Performs semantic equality on the boxed object. 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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Key for T
where T: Clone,

Source§

fn align() -> usize

The alignment necessary for the key. Must return a power of two.
Source§

fn size(&self) -> usize

The size of the key in bytes.
Source§

unsafe fn init(&self, ptr: *mut u8)

Initialize the key in the given memory location. Read more
Source§

unsafe fn get<'a>(ptr: *const u8) -> &'a T

Get a reference to the key from the given memory location. Read more
Source§

unsafe fn drop_in_place(ptr: *mut u8)

Drop the key in place. 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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Print for T
where T: Display,

Source§

fn print(&self)
where Self: Display,

Source§

impl<T> ToCompactString for T
where T: Display,

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> PlanCallbackArgs for T

Source§

impl<T> PlanCallbackOut for T