Position where the currently processed element starts. This is used for back-tracking in SingleItemDecoder.__call__ and (indefLen)ValueDecoder and should not be used for other purposes. The client is not supposed to ever seek before this position.
(self)
| 52 | |
| 53 | @property |
| 54 | def markedPosition(self): |
| 55 | """Position where the currently processed element starts. |
| 56 | |
| 57 | This is used for back-tracking in SingleItemDecoder.__call__ |
| 58 | and (indefLen)ValueDecoder and should not be used for other purposes. |
| 59 | The client is not supposed to ever seek before this position. |
| 60 | """ |
| 61 | return self._markedPosition |
| 62 | |
| 63 | @markedPosition.setter |
| 64 | def markedPosition(self, value): |