| Methods in org.openjena.atlas.iterator with parameters of type Action |
void |
Iter.apply(Action<T> action)
|
static
|
Iter.apply(java.lang.Iterable<? extends T> stream,
Action<T> action)
|
static
|
Iter.apply(java.util.Iterator<? extends T> stream,
Action<T> action)
|
Iter<T> |
Iter.operate(Action<T> action)
Apply an action to everything in the stream, yielding a stream of the same items |
static
<T> java.util.Iterator<T> |
|
Iter.operate(java.lang.Iterable<? extends T> stream,
Action<T> converter)
Apply an action to everything in stream, yielding a stream of the same items |
static
<T> java.util.Iterator<T> |
|
Iter.operate(java.util.Iterator<? extends T> stream,
Action<T> action)
Apply an action to everything in stream, yielding a stream of the same items |