Cluster Dimensions
TODO - Definition / Description of CDs
| Symbol | Name | Binary Equivalents |
|---|---|---|
| 1 | TRUE | 1 |
| 0 | FALSE | 0 |
| ^ | UPARROW | 0, 1 |
| 11 | TRUE_TRUE | 11 |
| 111 | TRUE_TRUE_TRUE | 111 |
| << | LESSTHAN_LESSTHAN | 00, 01, 10 |
| <<< | LESSTHAN_LESSTHAN_LESSTHAN | 000, 001, 010, 011, 100, 101, 110 |
| !! | BANG_BANG | 01, 10 |
| ==... | EQUAL (any width) | Any width n ≥ 2: all n bits 0, or all n bits 1 (e.g. width 2: 00, 11) |
| !==... | BANG_EQUALS (any width) | Any width n ≥ 3: all n bits 0, or all n bits 1 (e.g. width 3: 000, 111) |
| #!=... | HASH_BANG_EQUALS (any width) — not yet supported | Not yet supported — no confirmed binary addresses. |