(&mut self)
| 246 | /// whereas the longhand version copies the data twice. |
| 247 | #[pyo3(signature = ())] |
| 248 | pub fn get_decoder(&mut self) -> RangeDecoder { |
| 249 | let compressed = self.inner.get_compressed().to_vec(); |
| 250 | RangeDecoder::from_vec(compressed) |
| 251 | } |
| 252 | |
| 253 | /// Encodes one or more symbols, appending them to the encapsulated compressed data. |
| 254 | /// |