(n: number)
| 21 | * A point interval [n, n] represents the exact value n. |
| 22 | */ |
| 23 | export function point(n: number): Interval { |
| 24 | return { lo: n, hi: n }; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Check if an interval contains a periodic extremum. |
no outgoing calls
no test coverage detected