Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 687 Bytes

BoundedLattice.md

File metadata and controls

23 lines (15 loc) · 687 Bytes
id title
BoundedLattice
Module BoundedLattice

← Index

Source

BoundedLattice

Signature (type class) Source

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

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

Added in v1.4.0