A BoundedLattice
must satisfy the following in addition to BoundedMeetSemilattice
and BoundedJoinSemilattice
laws:
a ∧ (a ∨ b) <-> a
a ∨ (a ∧ b) <-> a
Added in v2.0.0
Signature
export interface BoundedLattice<A> extends BoundedJoinSemilattice<A>, BoundedMeetSemilattice<A> {}
Added in v2.0.0