4546474849505152
public Iterator tuples(Predicate filter, Sort sort) { if ( sort == null ) { return tuples(filter); } else { Comparator c = sort.getComparator(this); return new SortedTupleIterator(tuples(filter),getTupleCount(),c); } }