(O: Order<A>)
| 660 | * @since 4.0.0 |
| 661 | */ |
| 662 | export const isLessThan = <A>(O: Order<A>): { |
| 663 | (that: A): (self: A) => boolean |
| 664 | (self: A, that: A): boolean |
| 665 | } => dual(2, (self: A, that: A) => O(self, that) === -1) |
| 666 | |
| 667 | /** |
| 668 | * Checks whether one value is strictly greater than another according to the given order. |
no outgoing calls
no test coverage detected