(O: Order<A>)
| 660 | * @see {@link isGreaterThan} for strict greater than |
| 661 | * @category predicates |
| 662 | * @since 4.0.0 |
| 663 | */ |
| 664 | export const isLessThan = <A>(O: Order<A>): { |
| 665 | (that: A): (self: A) => boolean |
| 666 | (self: A, that: A): boolean |
| 667 | } => dual(2, (self: A, that: A) => O(self, that) === -1) |
| 668 |
no test coverage detected
searching dependent graphs…