(O: Order<A>)
| 260 | * @since 2.0.0 |
| 261 | */ |
| 262 | export const lessThan = <A>(O: Order<A>): { |
| 263 | (that: A): (self: A) => boolean |
| 264 | (self: A, that: A): boolean |
| 265 | } => dual(2, (self: A, that: A) => O(self, that) === -1) |
| 266 | |
| 267 | /** |
| 268 | * Test whether one value is _strictly greater than_ another. |
no outgoing calls
no test coverage detected