/** * A `DistributiveLattice` must satisfy the following laws in addition to `Lattice` laws: * * - Distributivity for meet: `a ∨ (b ∧ c) <-> (a ∨ b) ∧ (a ∨ c)` * - Distributivity for join: `a ∧ (b ∨ c) <-> (a ∧ b) ∨ (a ∧ c)` * * @since 1.0.0 */ import type { Lattice } from './Lattice'; /** * @category Type Classes * @since 1.0.0 */ export interface DistributiveLattice extends Lattice { } //# sourceMappingURL=DistributiveLattice.d.ts.map