operator & method

Predicate<T> operator &(
  1. Predicate<T> predicate
)

Compose this Predicate with the given predicate using AND.

Implementation

Predicate<T> operator &(Predicate<T> predicate) => and(predicate);