版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
123456789101112131415
  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> {}