and method

Predicate<Input> and(
  1. Predicate<Input> predicate
)

Implementation

Predicate<Input> and(final Predicate<Input> predicate) => (i) => this(i) && predicate(i);