|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use LinkedList | |
|---|---|
| com.github.andrewoma.dexx.collection | Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java. |
| com.github.andrewoma.dexx.collection.internal.base | |
| Uses of LinkedList in com.github.andrewoma.dexx.collection |
|---|
| Classes in com.github.andrewoma.dexx.collection that implement LinkedList | |
|---|---|
class |
ConsList<E>
ConsList is a functional LinkedList implementation
that constructs a list by prepending an element to another list. |
| Methods in com.github.andrewoma.dexx.collection that return LinkedList | ||
|---|---|---|
LinkedList<E> |
LinkedList.append(E elem)
|
|
static
|
LinkedLists.copyOf(E[] es)
|
|
static
|
LinkedLists.copyOf(Iterable<E> iterable)
|
|
static
|
LinkedLists.copyOf(Iterator<E> iterator)
|
|
static
|
LinkedLists.copyOfTraversable(Traversable<E> traversable)
|
|
LinkedList<E> |
LinkedList.drop(int number)
|
|
static
|
LinkedLists.of()
|
|
static
|
LinkedLists.of(E t)
|
|
static
|
LinkedLists.of(E e1,
E e2)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10)
|
|
static
|
LinkedLists.of(E e1,
E e2,
E e3,
E e4,
E e5,
E e6,
E e7,
E e8,
E e9,
E e10,
E... others)
|
|
LinkedList<E> |
LinkedList.prepend(E elem)
|
|
LinkedList<E> |
LinkedList.range(int from,
boolean fromInclusive,
int to,
boolean toInclusive)
|
|
LinkedList<E> |
LinkedList.set(int i,
E elem)
|
|
LinkedList<E> |
LinkedList.tail()
|
|
LinkedList<E> |
LinkedList.take(int number)
|
|
| Methods in com.github.andrewoma.dexx.collection that return types with arguments of type LinkedList | ||
|---|---|---|
static
|
LinkedLists.builder()
|
|
static
|
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 | |
|---|---|
class |
AbstractLinkedList<E>
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||