MCPcopy Create free account
hub / github.com/apache/arrow / Append

Method Append

cpp/src/arrow/array/builder_nested.h:282–286  ·  view source on GitHub ↗

\brief Start a new variable-length list slot This function should be called before beginning to append elements to the value builder

Source from the content-addressed store, hash-verified

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 ///

Callers 1

AppendNextOffsetMethod · 0.45

Calls 1

AppendFunction · 0.70

Tested by

no test coverage detected