Return a unit sequence at the given index.
(self, idx: ArithRef | int)
| 3904 | ) |
| 3905 | |
| 3906 | def at(self, idx: ArithRef | int) -> ExprRef: |
| 3907 | """Return a unit sequence at the given index.""" |
| 3908 | elem = self[idx] |
| 3909 | return Unit(elem) |
| 3910 | |
| 3911 | def is_string(self) -> bool: |
| 3912 | sort = self._sort |