(self, sequence_id: int)
| 1080 | self._position_lengths[sequence_id] = position_length |
| 1081 | |
| 1082 | def position_length(self, sequence_id: int) -> int: |
| 1083 | return self._position_lengths.get(sequence_id, 0) |
| 1084 | |
| 1085 | def position_length_for_prefix(self, sequence_id: int, keep_len: int) -> int: |
| 1086 | if keep_len <= 0 or sequence_id not in self._tails: |
no outgoing calls
no test coverage detected