none<Input> function

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

Implementation

Predicate<Input> none<Input>(final Predicate<Input> a, final Predicate<Input> b) => (i) => (!a(i) && !b(i));