NegativeInfinity returns a bound representing negative infinity.
()
| 191 | |
| 192 | // NegativeInfinity returns a bound representing negative infinity. |
| 193 | func NegativeInfinity() TemporalBound { |
| 194 | return TemporalBound{ |
| 195 | Type: NegativeInfinityBound, |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | // PositiveInfinity returns a bound representing positive infinity. |
| 200 | func PositiveInfinity() TemporalBound { |
no outgoing calls