public abstract static class Iteratee.Input<E>
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
abstract <Z> Z |
apply(P1<Z> empty,
P1<F<E,Z>> el,
P1<Z> eof) |
static <E> Iteratee.Input<E> |
el(E element)
Input that has a value available
|
static <E> Iteratee.Input<E> |
empty()
Input that has no values available
|
static <E> Iteratee.Input<E> |
eof()
Input that is exhausted
|
public static final <E> Iteratee.Input<E> empty()
public static final <E> Iteratee.Input<E> eof()
public static final <E> Iteratee.Input<E> el(E element)