Uses of Interface
org.tbull.util.IterableIterator

Packages that use IterableIterator
org.tbull.util Very basic utilities. 
 

Uses of IterableIterator in org.tbull.util
 

Classes in org.tbull.util that implement IterableIterator
static class Collections.LazyGrepIterator<E>
          An iterator that provides the grepLazy functionality.
static class Collections.LazyMapIterator<I,O>
          An iterator that provides the mapLazy functionality.
 

Methods in org.tbull.util that return IterableIterator
static
<E> IterableIterator<E>
Collections.grepLazy(Grepper<? super E> grepper, Iterable<E>... lists)
          Greps through one or more Iterables, returning one result element at a time.
static
<E> IterableIterator<E>
Collections.grepLazy(Grepper<? super E> grepper, Iterator<E>... iterators)
          Greps through one or more Iterators, returning one result element at a time.
static
<I,O> IterableIterator<O>
Collections.mapLazy(Mapper<? super I,? extends O> mapper, Iterable<I>... lists)
           
static
<I,O> IterableIterator<O>
Collections.mapLazy(Mapper<? super I,? extends O> mapper, Iterator<I>... iterators)