Overview
A BoundedDistributiveLattice
is a lattice that is both bounded and distributive
Table of contents
BoundedDistributiveLattice (interface)
Signature
export interface BoundedDistributiveLattice<A> extends BoundedLattice<A>, DistributiveLattice<A> {}
Added in v1.4.0
getMinMaxBoundedDistributiveLattice (function)
Signature
export const getMinMaxBoundedDistributiveLattice = <A>(O: Ord<A>) => (
min: A,
max: A
): BoundedDistributiveLattice<A> => ...
Added in v1.4.0