(O: Order<A>)
| 728 | * @since 4.0.0 |
| 729 | */ |
| 730 | export const isLessThanOrEqualTo = <A>(O: Order<A>): { |
| 731 | (that: A): (self: A) => boolean |
| 732 | (self: A, that: A): boolean |
| 733 | } => dual(2, (self: A, that: A) => O(self, that) !== 1) |
| 734 | |
| 735 | /** |
| 736 | * Checks whether one value is greater than or equal to another according to the given order. |
no test coverage detected
searching dependent graphs…