(O: Order<A>)
| 270 | * @since 2.0.0 |
| 271 | */ |
| 272 | export const greaterThan = <A>(O: Order<A>): { |
| 273 | (that: A): (self: A) => boolean |
| 274 | (self: A, that: A): boolean |
| 275 | } => dual(2, (self: A, that: A) => O(self, that) === 1) |
| 276 | |
| 277 | /** |
| 278 | * Test whether one value is _non-strictly less than_ another. |
no outgoing calls
no test coverage detected