Esempio n. 1
0
 // <editor-fold defaultstate="collapsed" desc="filter">
 public Iterable<Function> filter(Iterable<Function> src, Predicate<Function> f) {
   if (src == null) throw new IllegalArgumentException("src==null");
   if (f == null) throw new IllegalArgumentException("f==null");
   return Iterators.predicate(src, f);
 }