(self, pos: int)
| 3969 | return increments |
| 3970 | |
| 3971 | def is_boundary(self, pos: int) -> bool: |
| 3972 | if pos <= 0 or pos >= self.length: |
| 3973 | return True |
| 3974 | return any(segment.start_pos == pos or segment.end_pos == pos for segment in self.segments) |
| 3975 | |
| 3976 | def is_reusable_boundary(self, pos: int) -> bool: |
| 3977 | if pos <= 0 or pos >= self.length: |
no outgoing calls
no test coverage detected