both<Input> function

Predicate<Input> both<Input>(
  1. Predicate<Input> a,
  2. Predicate<Input> b
)

Implementation

Predicate<Input> both<Input>(final Predicate<Input> a, final Predicate<Input> b) => a.and(b);