public abstract static class Iteratee.Input<E>
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
abstract <Z> Z |
apply(F0<Z> empty,
F0<F<E,Z>> el,
F0<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 <E> Iteratee.Input<E> empty()
public static <E> Iteratee.Input<E> eof()
public static <E> Iteratee.Input<E> el(E element)