Return the number of values that are remaining in the current run.
| 491 | |
| 492 | /// Return the number of values that are remaining in the current run. |
| 493 | rle_size_t run_remaining() const { |
| 494 | return std::visit([](const auto& dec) { return dec.remaining(); }, decoder_); |
| 495 | } |
| 496 | |
| 497 | /// Get a batch of values from the current run and return the number elements read. |
| 498 | [[nodiscard]] rle_size_t RunGetBatch(value_type* out, rle_size_t batch_size) { |