版博士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.
 
 
 
 

16 regels
536 B

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