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