(self)
| 713 | return self |
| 714 | |
| 715 | def size(self) -> int: |
| 716 | sort = self._sort |
| 717 | if isinstance(sort, BitVecSortRef): |
| 718 | return sort._width |
| 719 | raise TypeError("size() requires BitVecSortRef") |
| 720 | |
| 721 | # Comparisons (signed, matching z3py operator semantics) |
| 722 | def __lt__(self, other: BitVecRef | int) -> BoolRef: |
no outgoing calls