MCPcopy Index your code
hub / github.com/Effect-TS/effect / lessThan

Function lessThan

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

Source from the content-addressed store, hash-verified

260 * @since 2.0.0
261 */
262export const lessThan = <A>(O: Order<A>): {
263 (that: A): (self: A) => boolean
264 (self: A, that: A): boolean
265} => dual(2, (self: A, that: A) => O(self, that) === -1)
266
267/**
268 * Test whether one value is _strictly greater than_ another.

Callers 4

Order.tsFile · 0.70
BigDecimal.tsFile · 0.70
Order.test.tsFile · 0.50
String.test.tsFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected