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