(&mut self)
| 152 | /// See [`seek`](#constriction.stream.queue.RangeDecoder.seek). |
| 153 | #[pyo3(signature = ())] |
| 154 | pub fn pos(&mut self) -> (usize, (u64, u64)) { |
| 155 | let (pos, state) = self.inner.pos(); |
| 156 | (pos, (state.lower(), state.range().get())) |
| 157 | } |
| 158 | |
| 159 | /// Returns the current size of the encapsulated compressed data, in `np.uint32` words. |
| 160 | /// |