Uses of Interface
org.tbull.util.Mapper

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

Uses of Mapper in org.tbull.util
 

Classes in org.tbull.util that implement Mapper
static class Mapper.IdentityMapper<E>
          A Mapper that maps according to an identity function.
 

Methods in org.tbull.util with parameters of type Mapper
static
<I,O> List<? super O>
Collections.map(List<? super O> dest, Mapper<? super I,? extends O> mapper, Iterable<I>... lists)
           
static
<I,O> List<? super O>
Collections.map(List<? super O> dest, Mapper<? super I,? extends O> mapper, Iterator<I>... iterators)
           
static
<I,O> List<O>
Collections.map(Mapper<? super I,? extends O> mapper, Iterable<I>... lists)
           
static
<I,O> List<O>
Collections.map(Mapper<? super I,? extends O> mapper, Iterator<I>... iterators)
           
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)
           
 

Constructors in org.tbull.util with parameters of type Mapper
Collections.LazyMapIterator(Mapper<? super I,? extends O> mapper, Iterable<I>[] lists)
          Constructs a LazyMapIterator that iterates over the given iterables (lists).
Collections.LazyMapIterator(Mapper<? super I,? extends O> mapper, Iterator<I>[] iterators)
          Constructs a LazyMapIterator that fetches from the given iterators.