Append an element to the Struct. All child-builders' Append method must be called independently to maintain data-structure consistency.
| 766 | /// Append an element to the Struct. All child-builders' Append method must |
| 767 | /// be called independently to maintain data-structure consistency. |
| 768 | Status Append(bool is_valid = true) { |
| 769 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 770 | UnsafeAppendToBitmap(is_valid); |
| 771 | return Status::OK(); |
| 772 | } |
| 773 | |
| 774 | /// \brief Append a null value. Automatically appends an empty value to each child |
| 775 | /// builder. |
no test coverage detected