Struct arrow_array::array::MapArray  
source · pub struct MapArray { /* private fields */ }Expand description
An array of key-value maps
Keys should always be non-null, but values can be null.
MapArray is physically a crate::array::ListArray that has a StructArray with 2 child fields.
Implementations§
source§impl MapArray
 
impl MapArray
sourcepub fn offsets(&self) -> &OffsetBuffer<i32>
 
pub fn offsets(&self) -> &OffsetBuffer<i32>
Returns a reference to the offsets of this map
Unlike Self::value_offsets this returns the OffsetBuffer
allowing for zero-copy cloning
sourcepub fn entries(&self) -> &StructArray
 
pub fn entries(&self) -> &StructArray
Returns a reference to the StructArray entries of this map
sourcepub fn value_type(&self) -> &DataType
 
pub fn value_type(&self) -> &DataType
Returns the data type of the map’s values.
sourcepub unsafe fn value_unchecked(&self, i: usize) -> StructArray
 
pub unsafe fn value_unchecked(&self, i: usize) -> StructArray
Returns ith value of this map array.
Safety
Caller must ensure that the index is within the array bounds
sourcepub fn value(&self, i: usize) -> StructArray
 
pub fn value(&self, i: usize) -> StructArray
Returns ith value of this map array.
This is a StructArray containing two fields
sourcepub fn value_offsets(&self) -> &[i32]
 
pub fn value_offsets(&self) -> &[i32]
Returns the offset values in the offsets buffer
sourcepub fn value_length(&self, i: usize) -> i32
 
pub fn value_length(&self, i: usize) -> i32
Returns the length for value at index i.
Trait Implementations§
source§impl Array for MapArray
 
impl Array for MapArray
source§fn slice(&self, offset: usize, length: usize) -> ArrayRef
 
fn slice(&self, offset: usize, length: usize) -> ArrayRef
Returns a zero-copy slice of this array with the indicated offset and length. Read more
source§fn offset(&self) -> usize
 
fn offset(&self) -> usize
Returns the offset into the underlying data used by this array(-slice).
Note that the underlying data can be shared by many arrays.
This defaults to 
0. Read moresource§fn nulls(&self) -> Option<&NullBuffer>
 
fn nulls(&self) -> Option<&NullBuffer>
Returns the null buffers of this array if any
source§fn get_buffer_memory_size(&self) -> usize
 
fn get_buffer_memory_size(&self) -> usize
Returns the total number of bytes of memory pointed to by this array.
The buffers store bytes in the Arrow memory format, and include the data as well as the validity map.
source§fn get_array_memory_size(&self) -> usize
 
fn get_array_memory_size(&self) -> usize
Returns the total number of bytes of memory occupied physically by this array.
This value will always be greater than returned by 
get_buffer_memory_size() and
includes the overhead of the data structures that contain the pointers to the various buffers.source§fn is_null(&self, index: usize) -> bool
 
fn is_null(&self, index: usize) -> bool
Returns whether the element at 
index is null.
When using this function on a slice, the index is relative to the slice. Read moresource§fn is_valid(&self, index: usize) -> bool
 
fn is_valid(&self, index: usize) -> bool
Returns whether the element at 
index is not null.
When using this function on a slice, the index is relative to the slice. Read moresource§fn null_count(&self) -> usize
 
fn null_count(&self) -> usize
Returns the total number of null values in this array. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for MapArray
impl Send for MapArray
impl Sync for MapArray
impl Unpin for MapArray
impl !UnwindSafe for MapArray
Blanket Implementations§
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