or method
Creates a 'logical or' expression of this expression and the other
Implementation
Or or(Expression exp) {
Or ret = new Or();
if (this.length != 0) {
ret = ret.or(this);
}
return ret.or(exp);
}
Creates a 'logical or' expression of this expression and the other
Or or(Expression exp) {
Or ret = new Or();
if (this.length != 0) {
ret = ret.or(this);
}
return ret.or(exp);
}