Struct arrow2::array::UnionArray
source · pub struct UnionArray { /* private fields */ }
Expand description
UnionArray
represents an array whose each slot can contain different values.
Implementations§
source§impl<'a> UnionArray
impl<'a> UnionArray
source§impl UnionArray
impl UnionArray
sourcepub fn try_new(
data_type: DataType,
types: Buffer<i8>,
fields: Vec<Box<dyn Array>>,
offsets: Option<Buffer<i32>>
) -> Result<Self, Error>
pub fn try_new( data_type: DataType, types: Buffer<i8>, fields: Vec<Box<dyn Array>>, offsets: Option<Buffer<i32>> ) -> Result<Self, Error>
Returns a new UnionArray
.
§Errors
This function errors iff:
data_type
’s physical type is notcrate::datatypes::PhysicalType::Union
.- the fields’s len is different from the
data_type
’s children’s length - The number of
fields
is larger thani8::MAX
- any of the values’s data type is different from its corresponding children’ data type
sourcepub fn new(
data_type: DataType,
types: Buffer<i8>,
fields: Vec<Box<dyn Array>>,
offsets: Option<Buffer<i32>>
) -> Self
pub fn new( data_type: DataType, types: Buffer<i8>, fields: Vec<Box<dyn Array>>, offsets: Option<Buffer<i32>> ) -> Self
Returns a new UnionArray
.
§Panics
This function panics iff:
data_type
’s physical type is notcrate::datatypes::PhysicalType::Union
.- the fields’s len is different from the
data_type
’s children’s length - any of the values’s data type is different from its corresponding children’ data type
sourcepub fn new_null(data_type: DataType, length: usize) -> Self
pub fn new_null(data_type: DataType, length: usize) -> Self
Creates a new null UnionArray
.
sourcepub fn new_empty(data_type: DataType) -> Self
pub fn new_empty(data_type: DataType) -> Self
Creates a new empty UnionArray
.
sourcepub fn boxed(self) -> Box<dyn Array>
pub fn boxed(self) -> Box<dyn Array>
Boxes self into a Box<dyn Array>
.
sourcepub fn arced(self) -> Arc<dyn Array>
pub fn arced(self) -> Arc<dyn Array>
Boxes self into a std::sync::Arc<dyn Array>
.
source§impl UnionArray
impl UnionArray
sourcepub fn slice(&self, offset: usize, length: usize) -> Self
pub fn slice(&self, offset: usize, length: usize) -> Self
Returns a slice of this UnionArray
.
§Implementation
This operation is O(F)
where F
is the number of fields.
§Panic
This function panics iff offset + length >= self.len()
.
sourcepub unsafe fn slice_unchecked(&self, offset: usize, length: usize) -> Self
pub unsafe fn slice_unchecked(&self, offset: usize, length: usize) -> Self
Returns a slice of this UnionArray
.
§Implementation
This operation is O(F)
where F
is the number of fields.
§Safety
The caller must ensure that offset + length <= self.len()
.
source§impl UnionArray
impl UnionArray
sourcepub fn index(&self, index: usize) -> (usize, usize)
pub fn index(&self, index: usize) -> (usize, usize)
Returns the index and slot of the field to select from self.fields
.
sourcepub unsafe fn index_unchecked(&self, index: usize) -> (usize, usize)
pub unsafe fn index_unchecked(&self, index: usize) -> (usize, usize)
Returns the index and slot of the field to select from self.fields
.
The first value is guaranteed to be < self.fields().len()
§Safety
This function is safe iff index < self.len
.
source§impl UnionArray
impl UnionArray
sourcepub fn get_fields(data_type: &DataType) -> &[Field]
pub fn get_fields(data_type: &DataType) -> &[Field]
Returns all fields from DataType::Union
.
§Panic
Panics iff data_type
’s logical type is not DataType::Union
.
sourcepub fn is_sparse(data_type: &DataType) -> bool
pub fn is_sparse(data_type: &DataType) -> bool
Returns whether the DataType::Union
is sparse or not.
§Panic
Panics iff data_type
’s logical type is not DataType::Union
.
Trait Implementations§
source§impl Array for UnionArray
impl Array for UnionArray
source§fn as_any(&self) -> &dyn Any
fn as_any(&self) -> &dyn Any
Any
, which enables downcasting to concrete types.source§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
Any
, which enables mutable downcasting to concrete types.source§fn len(&self) -> usize
fn len(&self) -> usize
Array
. Every array has a length corresponding to the number of
elements (slots).source§fn data_type(&self) -> &DataType
fn data_type(&self) -> &DataType
DataType
of the Array
. In combination with Array::as_any
, this can be
used to downcast trait objects (dyn Array
) to concrete arrays.source§impl Clone for UnionArray
impl Clone for UnionArray
source§fn clone(&self) -> UnionArray
fn clone(&self) -> UnionArray
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more