Package fj.data
Class Iteratee.Input<E>
- java.lang.Object
-
- fj.data.Iteratee.Input<E>
-
- Enclosing class:
- Iteratee
public abstract static class Iteratee.Input<E> extends java.lang.Object
The input to an iteratee.
-
-
Constructor Summary
Constructors Constructor Description Input()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method 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 availablestatic <E> Iteratee.Input<E>
empty()
Input that has no values availablestatic <E> Iteratee.Input<E>
eof()
Input that is exhausted
-
-
-
Method Detail
-
empty
public static <E> Iteratee.Input<E> empty()
Input that has no values available
-
eof
public static <E> Iteratee.Input<E> eof()
Input that is exhausted
-
el
public static <E> Iteratee.Input<E> el(E element)
Input that has a value available
-
-