The lower bound of the range. `!None` if empty or unbound.
(self)
| 130 | |
| 131 | @property |
| 132 | def lower(self) -> T | None: |
| 133 | """The lower bound of the range. `!None` if empty or unbound.""" |
| 134 | return self._lower |
| 135 | |
| 136 | @property |
| 137 | def upper(self) -> T | None: |
no outgoing calls