Beispiel #1
0
 protected override int CalculateValue() => input?.GetValue() ?? 0;
Beispiel #2
0
 protected override int CalculateValue() => inputA.GetValue()& inputB.GetValue();
Beispiel #3
0
 protected override int CalculateValue() => (input.GetValue() << lshift) & 0xffff;
Beispiel #4
0
 protected override int CalculateValue() => (~input.GetValue()) & 0xffff;
Beispiel #5
0
 protected override int CalculateValue() => input.GetValue() >> rshift;