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

Function Append

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

Append an element to the Struct. All child-builders' Append method must be called independently to maintain data-structure consistency.

Source from the content-addressed store, hash-verified

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.

Callers 6

AppendNullMethod · 0.70
AppendEmptyValueMethod · 0.70
AppendMethod · 0.70
AppendArraySliceFunction · 0.70
AppendNullFunction · 0.70
AppendEmptyValueFunction · 0.70

Calls 3

UnsafeAppendToBitmapFunction · 0.85
ReserveFunction · 0.70
OKFunction · 0.50

Tested by

no test coverage detected