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

Function AppendValues

cpp/src/arrow/array/builder_primitive.h:414–418  ·  view source on GitHub ↗

\brief Append a sequence of elements in one shot \param[in] values a contiguous array of arrow::util::Float16 \param[in] length the number of values to append \param[in] valid_bytes an optional sequence of bytes where non-zero indicates a valid (non-null) value \return Status

Source from the content-addressed store, hash-verified

412 /// indicates a valid (non-null) value
413 /// \return Status
414 Status AppendValues(const Float16* values, int64_t length,
415 const uint8_t* valid_bytes = NULLPTR) {
416 return BaseClass::AppendValues(reinterpret_cast<const uint16_t*>(values), length,
417 valid_bytes);
418 }
419
420 /// \brief Append a sequence of elements in one shot
421 /// \param[in] values a contiguous array of arrow::util::Float16

Callers 3

AppendValuesMethod · 0.70
AppendArraySliceMethod · 0.70
AppendArraySliceFunction · 0.70

Calls 7

ReserveFunction · 0.70
OKFunction · 0.50
dataMethod · 0.45
sizeMethod · 0.45
UnsafeAppendMethod · 0.45
lengthMethod · 0.45
false_countMethod · 0.45

Tested by

no test coverage detected