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