Class TernaryLogicControl
- Namespace
- Zyl.VectorTraits.Impl
- Assembly
- VectorTraits.dll
Control codes for ternary logic (三元逻辑的控制码)
public static class TernaryLogicControl
- Inheritance
-
TernaryLogicControl
- Inherited Members
Remarks
For member naming conventions, use Prefix Expression (Polish Notation) (对于成员的命名规范, 采用前缀表达式(波兰式) ).
- NotA:
~A
- Or_And_A_B_And_NotA_C:
(A&B)|(~A&C)
- ...
Fields
- A
0xF0:
A
- All0
0x00:
0
- All1
0xFF:
1
- B
0xCC:
B
- C
0xAA:
C
- NotA
0x0F:
~A
- NotB
0x33:
~B
- NotC
0x55:
~C
- Or_A_NotB
0xF3:
A | ~B
- Or_And_A_B_And_NotA_C
0xCA:
(A&B)|(~A&C)