(O: Order<A>)
| 280 | * @since 2.0.0 |
| 281 | */ |
| 282 | export const lessThanOrEqualTo = <A>(O: Order<A>): { |
| 283 | (that: A): (self: A) => boolean |
| 284 | (self: A, that: A): boolean |
| 285 | } => dual(2, (self: A, that: A) => O(self, that) !== 1) |
| 286 | |
| 287 | /** |
| 288 | * Test whether one value is _non-strictly greater than_ another. |
no outgoing calls
no test coverage detected