or method

Or or(
  1. Expression exp
)
override

Creates a 'logical or' expression of this expression and the other

Implementation

Or or(Expression exp) {
  Or ret = Or();
  return ret.or(this).or(exp);
}