Returns the length of the uncomressed data.
(&self)
| 57 | |
| 58 | /// Returns the length of the uncomressed data. |
| 59 | pub fn len(&self) -> usize { self.v.len() } |
| 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) } |
no outgoing calls
no test coverage detected