or method
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);
}
Creates a 'logical or' expression of this expression and the other
Or or(Expression exp) {
Or ret = Or();
return ret.or(this).or(exp);
}