Uses of Class
com.github.andrewoma.dexx.collection.ConsList
Packages that use ConsList
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of ConsList in com.github.andrewoma.dexx.collection
Subclasses of ConsList in com.github.andrewoma.dexx.collectionModifier and TypeClassDescription(package private) class
Cons<E>
Cons constructs a new list by prepending a new element to an existing list(package private) class
Nil<E>
Nil is the empty listFields in com.github.andrewoma.dexx.collection declared as ConsListMethods in com.github.andrewoma.dexx.collection that return ConsListModifier and TypeMethodDescriptionCons.drop
(int number) ConsList.drop
(int number) Nil.drop
(int number) static <E> ConsList
<E> ConsList.empty()
Cons.range
(int from, boolean fromInclusive, int to, boolean toInclusive) ConsList.range
(int from, boolean fromInclusive, int to, boolean toInclusive) Nil.range
(int from, boolean fromInclusive, int to, boolean toInclusive) Cons.tail()
ConsList.tail()
Nil.tail()
Cons.take
(int number) ConsList.take
(int number) Nil.take
(int number) Methods in com.github.andrewoma.dexx.collection that return types with arguments of type ConsListModifier and TypeMethodDescriptionstatic <E> @NotNull BuilderFactory
<E, ConsList<E>> ConsList.factory()
Constructors in com.github.andrewoma.dexx.collection with parameters of type ConsList