\brief Start a new variable-length list slot This function should be called before beginning to append elements to the value builder
| 280 | /// This function should be called before beginning to append elements to the |
| 281 | /// value builder |
| 282 | Status Append(bool is_valid = true) { |
| 283 | // The value_length parameter to BASE::Append(bool, int64_t) is ignored when |
| 284 | // building a list array, so we can pass 0 here. |
| 285 | return BASE::Append(is_valid, 0); |
| 286 | } |
| 287 | |
| 288 | /// \brief Vector append |
| 289 | /// |
no test coverage detected