版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

16 rader
466 B

  1. /**
  2. * A `Lattice` must satisfy the following in addition to `JoinSemilattice` and `MeetSemilattice` laws:
  3. *
  4. * - Absorbtion law for meet: `a ∧ (a ∨ b) <-> a`
  5. * - Absorbtion law for join: `a ∨ (a ∧ b) <-> a`
  6. *
  7. * @since 2.0.0
  8. */
  9. import { JoinSemilattice } from './JoinSemilattice'
  10. import { MeetSemilattice } from './MeetSemilattice'
  11. /**
  12. * @category model
  13. * @since 2.0.0
  14. */
  15. export interface Lattice<A> extends JoinSemilattice<A>, MeetSemilattice<A> {}