Uses of Class
com.github.andrewoma.dexx.collection.ConsList
-
Packages that use ConsList Package Description com.github.andrewoma.dexx.collection 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.collection Modifier and Type Class Description (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 ConsList Modifier and Type Field Description (package private) ConsList<E>
ConsListIterator. current
private static ConsList<java.lang.Object>
ConsList. EMPTY
private ConsList<E>
Cons. tail
Methods in com.github.andrewoma.dexx.collection that return ConsList Modifier and Type Method Description @NotNull ConsList<E>
Cons. append(E elem)
abstract @NotNull ConsList<E>
ConsList. append(E elem)
@NotNull ConsList<E>
Nil. append(E elem)
@NotNull ConsList<E>
Cons. drop(int number)
abstract @NotNull ConsList<E>
ConsList. drop(int number)
@NotNull ConsList<E>
Nil. drop(int number)
static <E> ConsList<E>
ConsList. empty()
@NotNull ConsList<E>
ConsList. prepend(E elem)
@NotNull ConsList<E>
Cons. range(int from, boolean fromInclusive, int to, boolean toInclusive)
abstract @NotNull ConsList<E>
ConsList. range(int from, boolean fromInclusive, int to, boolean toInclusive)
@NotNull ConsList<E>
Nil. range(int from, boolean fromInclusive, int to, boolean toInclusive)
@NotNull ConsList<E>
Cons. set(int i, E elem)
abstract @NotNull ConsList<E>
ConsList. set(int i, E elem)
@NotNull ConsList<E>
Nil. set(int i, E elem)
@NotNull ConsList<E>
Cons. tail()
abstract @NotNull ConsList<E>
ConsList. tail()
@NotNull ConsList<E>
Nil. tail()
@NotNull ConsList<E>
Cons. take(int number)
abstract @NotNull ConsList<E>
ConsList. take(int number)
@NotNull ConsList<E>
Nil. take(int number)
Methods in com.github.andrewoma.dexx.collection that return types with arguments of type ConsList Modifier and Type Method Description static <E> @NotNull BuilderFactory<E,ConsList<E>>
ConsList. factory()
Constructors in com.github.andrewoma.dexx.collection with parameters of type ConsList Constructor Description Cons(E head, ConsList<E> tail)
ConsListIterator(ConsList<E> current)
-