(value: Interval)
| 12 | * This is the standard way to return successful interval results. |
| 13 | */ |
| 14 | export function ok(value: Interval): IntervalResult { |
| 15 | return { kind: 'interval', value }; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Create a point interval from a single number. |
no outgoing calls
no test coverage detected