版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

JoinSemilattice.js 453 B

1234567891011121314
  1. "use strict";
  2. /**
  3. * A join-semilattice (or upper semilattice) is a semilattice whose operation is called `join`, and which can be thought
  4. * of as a least upper bound.
  5. *
  6. * A `JoinSemilattice` 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 });