(&mut self, py: Python<'py>)
| 223 | /// ``` |
| 224 | #[pyo3(signature = ())] |
| 225 | pub fn get_compressed<'py>(&mut self, py: Python<'py>) -> Bound<'py, PyArray1<u32>> { |
| 226 | PyArray1::from_slice(py, &self.inner.get_compressed()) |
| 227 | } |
| 228 | |
| 229 | /// Returns a `RangeDecoder` that is initialized with a copy of the compressed data currently on |
| 230 | /// this `RangeEncoder`. |