enumerable4j
enumerable4j copied to clipboard
Methods should support vararg predicates
public boolean any(Predicate<T> first, Predicate<T> ... other);
public boolean all(Predicate<T> first, Predicate<T> ... other);
public Enumerable<T> select(Predicate<T> first, Predicate<T> ... other);
Should these methods return boolean or Enumerable<T> ?
Boolean.
@dgroup, please check if we need vararg support for other methods?