MCPcopy Create free account
hub / github.com/effect-app/libs / isLessThanOrEqualTo

Function isLessThanOrEqualTo

repos/effect/packages/effect/src/Order.ts:730–733  ·  view source on GitHub ↗
(O: Order<A>)

Source from the content-addressed store, hash-verified

728 * @since 4.0.0
729 */
730export 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.

Callers 1

Schema.test.tsFile · 0.85

Calls 1

OInterface · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…