版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

15 řádky
456 B

  1. "use strict";
  2. /**
  3. * A meet-semilattice (or lower semilattice) is a semilattice whose operation is called `meet`, and which can be thought
  4. * of as a greatest lower bound.
  5. *
  6. * A `MeetSemilattice` must satisfy the following laws:
  7. *
  8. * - Associativity: `a ∧ (b ∧ c) <-> (a ∧ b) ∧ c`
  9. * - Commutativity: `a ∧ b <-> b ∧ a`
  10. * - Idempotency: `a ∧ a <-> a`
  11. *
  12. * @since 2.0.0
  13. */
  14. Object.defineProperty(exports, "__esModule", { value: true });