\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
| 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 | /// |
no outgoing calls