| 33 | /// Unpack a zero bit packed array. |
| 34 | template <typename Uint> |
| 35 | ARROW_FORCE_INLINE void unpack_null(const uint8_t* in, Uint* out, int batch_size) { |
| 36 | std::memset(out, 0, batch_size * sizeof(Uint)); |
| 37 | } |
| 38 | |
| 39 | /// Unpack a packed array where packed and unpacked values have exactly the same number of |
| 40 | /// bits. |