Returns the number of values remaining
(&self)
| 68 | |
| 69 | /// Returns the number of values remaining |
| 70 | pub fn remaining(&self) -> usize { |
| 71 | self.prefix_lengths.len() - self.length_offset |
| 72 | } |
| 73 | |
| 74 | /// Read up to `len` values, returning the number of values read |
| 75 | /// and calling `f` with each decoded byte slice |