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