25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * A join-semilattice (or upper semilattice) is a semilattice whose operation is called `join`, and which can be thought
- * of as a least upper bound.
- *
- * A `JoinSemilattice` must satisfy the following laws:
- *
- * - Associativity: `a ∨ (b ∨ c) <-> (a ∨ b) ∨ c`
- * - Commutativity: `a ∨ b <-> b ∨ a`
- * - Idempotency: `a ∨ a <-> a`
- *
- * @since 2.0.0
- */
- export {};
|