filter method Null safety

Iterable<Element> filter(
  1. Iterable<Element> parentCandidates
)

Return another Iterable when given an Iterable of candidates from a parent Finder.

This is the method to implement when subclassing ChainedFinder.

Implementation

Iterable<Element> filter(Iterable<Element> parentCandidates);