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