Uses of Class
fj.data.Iteratee.Input
-
Packages that use Iteratee.Input Package Description fj.data Common algebraic data types. -
-
Uses of Iteratee.Input in fj.data
Fields in fj.data with type parameters of type Iteratee.Input Modifier and Type Field Description private F<P2<A,Iteratee.Input<char[]>>,P1<Iteratee.IterV<char[],A>>>
IOFunctions.CharChunkReader. done
private F<P2<A,Iteratee.Input<java.lang.Character>>,Iteratee.IterV<java.lang.Character,A>>
IOFunctions.CharChunkReader2. done
private F<P2<A,Iteratee.Input<java.lang.String>>,P1<Iteratee.IterV<java.lang.String,A>>>
IOFunctions.LineReader. done
Methods in fj.data that return Iteratee.Input Modifier and Type Method Description static <E> Iteratee.Input<E>
Iteratee.Input. el(E element)
Input that has a value availablestatic <E> Iteratee.Input<E>
Iteratee.Input. empty()
Input that has no values availablestatic <E> Iteratee.Input<E>
Iteratee.Input. eof()
Input that is exhaustedMethods in fj.data with parameters of type Iteratee.Input Modifier and Type Method Description static <E,A>
Iteratee.IterV<E,A>Iteratee.IterV. done(A a, Iteratee.Input<E> i)
A computation that has finishedMethod parameters in fj.data with type arguments of type Iteratee.Input Modifier and Type Method Description static <E,A>
Iteratee.IterV<E,A>Iteratee.IterV. cont(F<Iteratee.Input<E>,Iteratee.IterV<E,A>> f)
A computation that takes an element from an input to yield a new computationabstract <Z> Z
Iteratee.IterV. fold(F<P2<A,Iteratee.Input<E>>,Z> done, F<F<Iteratee.Input<E>,Iteratee.IterV<E,A>>,Z> cont)
-