|
| | list_array_crtp_base (arrow_proxy proxy) |
| | Constructs list array base from Arrow proxy.
|
| |
| constexpr | list_array_crtp_base (const self_type &) |
| | Copy constructor.
|
| |
| constexpr list_array_crtp_base & | operator= (const self_type &) |
| | Copy assignment operator.
|
| |
| constexpr | list_array_crtp_base (self_type &&) noexcept=default |
| |
| constexpr list_array_crtp_base & | operator= (self_type &&) noexcept=default |
| |
| | array_bitmap_base_impl (arrow_proxy proxy) |
| | Constructs array bitmap base from Arrow proxy.
|
| |
| constexpr | array_bitmap_base_impl (const array_bitmap_base_impl &) |
| | Copy constructor.
|
| |
| constexpr array_bitmap_base_impl & | operator= (const array_bitmap_base_impl &) |
| | Copy assignment operator.
|
| |
| constexpr | array_bitmap_base_impl (array_bitmap_base_impl &&) noexcept=default |
| |
| constexpr array_bitmap_base_impl & | operator= (array_bitmap_base_impl &&) noexcept=default |
| |
| constexpr bitmap_type & | get_bitmap () |
| | Gets mutable reference to the validity bitmap.
|
| |
| constexpr const bitmap_type & | get_bitmap () const |
| | Gets const reference to the validity bitmap.
|
| |
| constexpr void | resize_bitmap (size_type new_length, bool value) |
| | Resizes the validity bitmap to accommodate new array length.
|
| |
| constexpr bitmap_iterator | insert_bitmap (const_bitmap_iterator pos, bool value, size_type count) |
| | Inserts validity bits at specified position.
|
| |
| constexpr bitmap_iterator | insert_bitmap (const_bitmap_iterator pos, InputIt first, InputIt last) is_mutable |
| | Inserts range of validity bits at specified position.
|
| |
| constexpr bitmap_iterator | erase_bitmap (const_bitmap_iterator pos, size_type count) |
| | Erases validity bits starting at specified position.
|
| |
| constexpr void | update () |
| | Updates internal bitmap after external modifications to Arrow data.
|
| |
| constexpr non_owning_dynamic_bitset< uint8_t > | get_non_owning_dynamic_bitset () |
| | Gets non-owning view of the bitmap as dynamic bitset.
|
| |
| constexpr bitmap_type | make_bitmap () |
| | Creates bitmap wrapper from current Arrow validity buffer.
|
| |
| | array_bitmap_base_impl (arrow_proxy proxy) |
| | Constructs array bitmap base from Arrow proxy.
|
| |
| constexpr | array_bitmap_base_impl (const array_bitmap_base_impl &) |
| | Copy constructor.
|
| |
| constexpr | array_bitmap_base_impl (array_bitmap_base_impl &&) noexcept=default |
| |
| constexpr array_bitmap_base_impl & | operator= (const array_bitmap_base_impl &) |
| | Copy assignment operator.
|
| |
| constexpr array_bitmap_base_impl & | operator= (array_bitmap_base_impl &&) noexcept=default |
| |
| constexpr bitmap_type & | get_bitmap () |
| | Gets mutable reference to the validity bitmap.
|
| |
| constexpr const bitmap_type & | get_bitmap () const |
| | Gets const reference to the validity bitmap.
|
| |
| constexpr void | resize_bitmap (size_type new_length, bool value) |
| | Resizes the validity bitmap to accommodate new array length.
|
| |
| constexpr bitmap_iterator | insert_bitmap (const_bitmap_iterator pos, bool value, size_type count) |
| | Inserts validity bits at specified position.
|
| |
| constexpr bitmap_iterator | insert_bitmap (const_bitmap_iterator pos, InputIt first, InputIt last) is_mutable |
| | Inserts range of validity bits at specified position.
|
| |
| constexpr bitmap_iterator | erase_bitmap (const_bitmap_iterator pos, size_type count) |
| | Erases validity bits starting at specified position.
|
| |
| constexpr void | update () |
| | Updates internal bitmap after external modifications to Arrow data.
|
| |
| constexpr non_owning_dynamic_bitset< uint8_t > | get_non_owning_dynamic_bitset () |
| | Gets non-owning view of the bitmap as dynamic bitset.
|
| |
| constexpr bitmap_type | make_bitmap () |
| | Creates bitmap wrapper from current Arrow validity buffer.
|
| |
template<class DERIVED>
class sparrow::list_array_crtp_base< DERIVED >
CRTP base class for all list array implementations.
This class provides common functionality for list-based array types including list_array, big_list_array, list_view_array, big_list_view_array, and fixed_sized_list_array. It manages the flat array of values and provides iteration and access methods.
- Template Parameters
-
| DERIVED | The derived list array type (CRTP pattern) |
- Precondition
- DERIVED must implement offset_range(size_type) method
- Postcondition
- Maintains Arrow array format compatibility for list types
-
Provides unified interface for all list array variants
Definition at line 252 of file list_array.hpp.