Files
Project_Astral/blockchain/node_modules/fp-ts/lib/BoundedJoinSemilattice.d.ts
2026-02-25 00:50:23 +05:30

13 lines
311 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* @file A `BoundedJoinSemilattice` must satisfy the following laws in addition to `JoinSemilattice` laws:
*
* - `a 0 == a`
*/
import { JoinSemilattice } from './JoinSemilattice';
/**
* @since 1.4.0
*/
export interface BoundedJoinSemilattice<A> extends JoinSemilattice<A> {
readonly zero: A;
}