| Class | Description |
|---|---|
| ConsumeIntoCollection<E,R extends Collection<E>> |
Consumes every element from the consumable into the collection provided by
the supplier.
|
| ConsumeIntoMap<K,V,M extends Map<K,V>> |
Consumes every pair from the consumable into the map provided by the
supplier.
|
| ConsumeIntoOutputIterator<E> |
A consumer pushing elements consumed into an OutputIterator.
|
| FirstElement<E> |
A unary function consuming the first element from an iterator.
|
| LastElement<E> |
A unary function consuming an iterator and yielding last element contained in
it.
|
| MaybeFirstElement<E> |
Searches the first element.
|
| MaybeLastElement<E> |
gives up only after consuming the last element (and returns it)
|
| MaybeOneElement<E> |
Searches for zero or one element, throws if more than one element is found.
|
| OneElement<E> |
A unary function consuming an iterator yielding the only element contained in
it.
|
Copyright © 2017. All rights reserved.