and method

And and(
  1. Expression exp
)
override

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);
}