Decode all values at once.
(data: &[u8])
| 332 | |
| 333 | /// Decode all values at once. |
| 334 | pub fn decode_all(data: &[u8]) -> Result<Vec<i64>, CodecError> { |
| 335 | decode(data) |
| 336 | } |
| 337 | |
| 338 | /// Next value, or None if exhausted. |
| 339 | pub fn next_value(&mut self) -> Option<i64> { |