and function

FilterExpr and(
  1. List<FilterExpr> filters
)

Matches if all of the given filters match.

Implementation

FilterExpr and(List<FilterExpr> filters) {
  return FilterAnd(filters);
}