pub struct Pack { /* private fields */ }Expand description
Pack zero or more expressions into a structure with named fields.
§Examples
use vortex_array::IntoArray;
use vortex_array::compute::scalar_at;
use vortex_buffer::buffer;
use vortex_expr::{Pack, Identity, VortexExpr};
use vortex_scalar::Scalar;
let example = Pack::try_new_expr(
["x".into(), "x copy".into(), "second x copy".into()].into(),
vec![Identity::new_expr(), Identity::new_expr(), Identity::new_expr()],
).unwrap();
let packed = example.evaluate(&buffer![100, 110, 200].into_array()).unwrap();
let x_copy = packed
.as_struct_typed()
.unwrap()
.maybe_null_field_by_name("x copy")
.unwrap();
assert_eq!(scalar_at(&x_copy, 0).unwrap(), Scalar::from(100));
assert_eq!(scalar_at(&x_copy, 1).unwrap(), Scalar::from(110));
assert_eq!(scalar_at(&x_copy, 2).unwrap(), Scalar::from(200));Implementations§
Source§impl Pack
impl Pack
pub fn try_new_expr( names: FieldNames, values: Vec<ExprRef>, ) -> VortexResult<Arc<Self>>
pub fn names(&self) -> &FieldNames
pub fn field(&self, field_name: &FieldName) -> VortexResult<ExprRef>
Trait Implementations§
Source§impl VortexExpr for Pack
impl VortexExpr for Pack
Source§fn unchecked_evaluate(&self, batch: &dyn Array) -> VortexResult<ArrayRef>
fn unchecked_evaluate(&self, batch: &dyn Array) -> VortexResult<ArrayRef>
Compute result of expression on given batch producing a new batch Read more
fn children(&self) -> Vec<&ExprRef> ⓘ
fn replacing_children(self: Arc<Self>, children: Vec<ExprRef>) -> ExprRef
Source§fn return_dtype(&self, scope_dtype: &DType) -> VortexResult<DType>
fn return_dtype(&self, scope_dtype: &DType) -> VortexResult<DType>
Compute the type of the array returned by VortexExpr::evaluate.
impl Eq for Pack
impl StructuralPartialEq for Pack
Auto Trait Implementations§
impl Freeze for Pack
impl !RefUnwindSafe for Pack
impl Send for Pack
impl Sync for Pack
impl Unpin for Pack
impl !UnwindSafe for Pack
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.