Home | History | Annotate | Download | only in collect

Lines Matching refs:unfiltered

639    * Returns the elements of {@code unfiltered} that satisfy a predicate.
642 final Iterator<T> unfiltered, final Predicate<? super T> predicate) {
643 checkNotNull(unfiltered);
647 while (unfiltered.hasNext()) {
648 T element = unfiltered.next();
659 * Returns all instances of class {@code type} in {@code unfiltered}. The
663 * @param unfiltered an iterator containing objects of any type
671 Iterator<?> unfiltered, Class<T> type) {
673 filter(unfiltered, Predicates.instanceOf(type));