Esempio n. 1
0
 public BooleanOperand Equality(BooleanOperand other)
 {
     return(other != null && Value == other.Value ? Operand.True : Operand.False);
 }
Esempio n. 2
0
 public BooleanOperand Or(BooleanOperand other)
 {
     return(other == null ? this : new BooleanOperand(value: Value || other.Value));
 }