Uses of Interface
com.github.andrewoma.dexx.collection.LinkedList

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
<E> LinkedList<E>
LinkedLists.copyOf(E[] es)
           
static
<E> LinkedList<E>
LinkedLists.copyOf(Iterable<E> iterable)
           
static
<E> LinkedList<E>
LinkedLists.copyOf(Iterator<E> iterator)
           
static
<E> LinkedList<E>
LinkedLists.copyOfTraversable(Traversable<E> traversable)
           
 LinkedList<E> LinkedList.drop(int number)
           
static
<E> LinkedList<E>
LinkedLists.of()
           
static
<E> LinkedList<E>
LinkedLists.of(E t)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4, E e5)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
           
static
<E> LinkedList<E>
LinkedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
           
static
<E> 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> 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)
           
 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
<E> Builder<E,LinkedList<E>>
LinkedLists.builder()
           
static
<E> 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
 class AbstractLinkedList<E>
           
 



Copyright © 2014. All Rights Reserved.