Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 874 Bytes

BoundedDistributiveLattice.md

File metadata and controls

33 lines (22 loc) · 874 Bytes
id title
BoundedDistributiveLattice
Module BoundedDistributiveLattice

← Index

Source

BoundedDistributiveLattice

Signature (type class) Source

export interface BoundedDistributiveLattice<A> extends BoundedLattice<A>, DistributiveLattice<A> {}

A BoundedDistributiveLattice is a lattice that is both bounded and distributive

Added in v1.4.0

getMinMaxBoundedDistributiveLattice

Signature (function) Source

export const getMinMaxBoundedDistributiveLattice = <A>(O: Ord<A>) => (
  min: A,
  max: A
): BoundedDistributiveLattice<A> => { ... }

Added in v1.4.0