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

Packages that use IndexedList
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 IndexedList in com.github.andrewoma.dexx.collection
 

Classes in com.github.andrewoma.dexx.collection that implement IndexedList
 class ArrayList<E>
          ArrayList is an IndexedList implementation backed by an array.
 class Vector<E>
          Vector is a general-purpose, immutable data structure.
 

Methods in com.github.andrewoma.dexx.collection that return IndexedList
 IndexedList<E> IndexedList.append(E elem)
           
static
<E> IndexedList<E>
IndexedLists.copyOf(E[] es)
           
static
<E> IndexedList<E>
IndexedLists.copyOf(Iterable<E> iterable)
           
static
<E> IndexedList<E>
IndexedLists.copyOf(Iterator<E> iterator)
           
static
<E> IndexedList<E>
IndexedLists.copyOfTraversable(Traversable<E> traversable)
           
 IndexedList<E> IndexedList.drop(int number)
           
static
<E> IndexedList<E>
IndexedLists.of()
           
static
<E> IndexedList<E>
IndexedLists.of(E t)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
           
static
<E> IndexedList<E>
IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E... others)
           
 IndexedList<E> IndexedList.prepend(E elem)
           
 IndexedList<E> IndexedList.range(int from, boolean fromInclusive, int to, boolean toInclusive)
           
 IndexedList<E> IndexedList.set(int i, E elem)
           
 IndexedList<E> IndexedList.take(int number)
           
 IndexedList<E> Traversable.toIndexedList()
          Converts this collection to an indexed list.
 

Methods in com.github.andrewoma.dexx.collection that return types with arguments of type IndexedList
static
<E> Builder<E,IndexedList<E>>
IndexedLists.builder()
           
static
<E> BuilderFactory<E,IndexedList<E>>
IndexedLists.factory()
           
 

Uses of IndexedList in com.github.andrewoma.dexx.collection.internal.base
 

Classes in com.github.andrewoma.dexx.collection.internal.base that implement IndexedList
 class AbstractIndexedList<E>
           
 

Methods in com.github.andrewoma.dexx.collection.internal.base that return IndexedList
 IndexedList<E> AbstractTraversable.toIndexedList()
           
 



Copyright © 2014. All Rights Reserved.