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

Method DecodeArrowNonNull

cpp/src/parquet/encoding.h:321–324  ·  view source on GitHub ↗

\brief Decode into an ArrayBuilder or other accumulator ignoring nulls \param[in] num_values number of values to decode \param[in] out accumulator to decode into \return The number of values decoded

Source from the content-addressed store, hash-verified

319 ///
320 /// \return The number of values decoded
321 int DecodeArrowNonNull(int num_values,
322 typename EncodingTraits<DType>::Accumulator* out) {
323 return DecodeArrow(num_values, 0, /*valid_bits=*/NULLPTR, 0, out);
324 }
325
326 /// \brief Decode into a DictionaryBuilder
327 ///

Calls

no outgoing calls