|
| template<typename T > |
| static arrow::Status | appendToList (std::unique_ptr< arrow::FixedSizeListBuilder > &builder, const T *data, int size=1) |
| |
| template<typename HolderType , typename T > |
| static arrow::Status | append (HolderType &holder, T value) |
| |
| template<typename HolderType > |
| static arrow::Status | flush (HolderType &holder) |
| |
| template<typename HolderType , typename T > |
| static arrow::Status | append (HolderType &holder, const T *data) |
| |
| template<typename HolderType , typename T , int N> |
| static arrow::Status | append (HolderType &holder, const T(&data)[N]) |
| | Appender for the array case.
|
| |
| template<typename HolderType , typename T , int N> |
| static arrow::Status | append (HolderType &holder, std::array< const T, N > const &data) |
| | Appender for the array case.
|
| |
| template<typename HolderType , typename T > |
| static arrow::Status | append (HolderType &holder, std::span< const T > data) |
| | Appender for the vector case.
|
| |
| template<typename HolderType , typename T > |
| static void | unsafeAppend (HolderType &holder, std::span< const T > value) |
| |
| template<typename HolderType , typename T > |
| static void | unsafeAppend (HolderType &holder, T value) |
| |
| template<typename HolderType , typename T > |
| static void | unsafeAppend (HolderType &holder, T *value) |
| |
| template<typename HolderType , typename ITERATOR > |
| static arrow::Status | append (HolderType &holder, std::pair< ITERATOR, ITERATOR > ip) |
| |
| template<typename HolderType , typename ITERATOR > |
| static void | unsafeAppend (HolderType &holder, std::pair< ITERATOR, ITERATOR > ip) |
| |
Definition at line 106 of file TableBuilder.h.