between abstract method

ExpressionInterface between(
  1. ExpressionInterface expression, {
  2. required ExpressionInterface and,
})

Returns a new expression which evaluates to whether this expression is between the two given expressions inclusively.

Implementation

ExpressionInterface between(
  ExpressionInterface expression, {
  required ExpressionInterface and,
});