Overview

A BoundedLattice must satisfy the following in addition to BoundedMeetSemilattice and BoundedJoinSemilattice laws:

  • Absorbtion law for meet: a ∧ (a ∨ b) == a
  • Absorbtion law for join: a ∨ (a ∧ b) == a

Table of contents


BoundedLattice (interface)

Signature

export interface BoundedLattice<A> extends BoundedJoinSemilattice<A>, BoundedMeetSemilattice<A> {}

Added in v1.4.0