(numeric: int, positive: tuple[str, ...], negative: tuple[str, ...])
| 73 | |
| 74 | @staticmethod |
| 75 | def create(numeric: int, positive: tuple[str, ...], negative: tuple[str, ...]) -> "PointerOffset": |
| 76 | positive, negative = PointerOffset._simplify(positive, negative) |
| 77 | return PointerOffset(numeric, positive, negative) |
| 78 | |
| 79 | def __sub__(self, other: "PointerOffset") -> "PointerOffset": |
| 80 | return PointerOffset.create( |
no test coverage detected