Digital operators for boolean computation.
| Enumerator |
|---|
| AND | Logical AND - true only when all inputs are true.
|
| OR | Logical OR - true when any input is true.
|
| XOR | Logical XOR - true when odd number of inputs are true.
|
| NOT | Logical NOT - inverts the input.
|
| NAND | Logical NAND - inverted AND operation.
|
| NOR | Logical NOR - inverted OR operation.
|
| IMPLIES | Logical implication - false only when A is true and B is false.
|
| THRESHOLD | Binary quantization - true when input exceeds threshold.
|
| HYSTERESIS | Threshold with memory - prevents rapid oscillation at boundary.
|
| EDGE | Transition detector - identifies state changes.
|
| CUSTOM | User-defined boolean function.
|