Uses of Interface
com.github.andrewoma.dexx.collection.LinkedList
Packages that use LinkedList
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of LinkedList in com.github.andrewoma.dexx.collection
Classes in com.github.andrewoma.dexx.collection that implement LinkedListModifier and TypeClassDescription(package private) classCons<E>Cons constructs a new list by prepending a new element to an existing listclassConsList<E>ConsListis a functionalLinkedListimplementation that constructs a list by prepending an element to another list.(package private) classNil<E>Nil is the empty listMethods in com.github.andrewoma.dexx.collection that return LinkedListModifier and TypeMethodDescription@NotNull LinkedList<E> private static <E> LinkedList<E> LinkedLists.construct(E... es) static <E> @NotNull LinkedList<E> LinkedLists.copyOf(E[] es) static <E> @NotNull LinkedList<E> static <E> @NotNull LinkedList<E> static <E> @NotNull LinkedList<E> LinkedLists.copyOfTraversable(Traversable<E> traversable) @NotNull LinkedList<E> LinkedList.drop(int number) static <E> @NotNull LinkedList<E> LinkedLists.of()static <E> @NotNull LinkedList<E> LinkedLists.of(E t) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) static <E> @NotNull LinkedList<E> LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E... others) @NotNull LinkedList<E> @NotNull LinkedList<E> LinkedList.range(int from, boolean fromInclusive, int to, boolean toInclusive) @NotNull LinkedList<E> @NotNull LinkedList<E> LinkedList.tail()@NotNull LinkedList<E> LinkedList.take(int number) Methods in com.github.andrewoma.dexx.collection that return types with arguments of type LinkedListModifier and TypeMethodDescriptionstatic <E> @NotNull Builder<E, LinkedList<E>> LinkedLists.builder()static <E> @NotNull BuilderFactory<E, LinkedList<E>> LinkedLists.factory() -
Uses of LinkedList in com.github.andrewoma.dexx.collection.internal.base
Classes in com.github.andrewoma.dexx.collection.internal.base that implement LinkedList