Returns an iterator over the uncompressed data. TODO test
(&self)
| 60 | |
| 61 | /// Returns an iterator over the uncompressed data. TODO test |
| 62 | pub fn iter(&self) -> Skip<Iter<u8>> { self.v.iter().skip(self.idx) } |
| 63 | |
| 64 | // TODO test |
| 65 | pub fn buf(&'b self) -> &'b [u8] { &self.v.split_at(self.idx).1 } |
no outgoing calls