Uses of Class
fj.data.DList
Packages that use DList
-
Uses of DList in fj.data
Modifier and TypeMethodDescriptionAppends two DLists together to produce a new DList.static <A> DList
<A> DList.arrayDList
(A... as) Creates a DList from an arrayPrepends a single element on the DList to produce a new DList.static <A> DList
<A> DList.dlist
(F<List<A>, Trampoline<List<A>>> f) Creates a DList from the function For alternatives functions to create a DList:static <A> DList
<A> DList.iterableDList
(Iterable<A> it) Creates a DList from an Iterablestatic <A> DList
<A> DList.iteratorDList
(Iterator<A> it) Creates a DList from an Iteratorstatic <A> DList
<A> Creates a DList from a Liststatic <A> DList
<A> DList.nil()
A empty DList.static <A> DList
<A> DList.single
(A a) Produces a DList with one element.Appends a single element on the end of the DList to produce a new DList.