Uses of Class
com.github.andrewoma.dexx.collection.Vector

Packages that use Vector
com.github.andrewoma.dexx.collection Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java. 
 

Uses of Vector in com.github.andrewoma.dexx.collection
 

Methods in com.github.andrewoma.dexx.collection that return Vector
 Vector<E> Vector.append(E value)
           
 Vector<E> Vector.drop(int n)
           
static
<E> Vector<E>
Vector.empty()
           
 Vector<E> Vector.prepend(E value)
           
 Vector<E> Vector.range(int from, boolean fromInclusive, int to, boolean toInclusive)
           
 Vector<E> Vector.set(int index, E elem)
           
 Vector<E> Vector.tail()
           
 Vector<E> Vector.take(int n)
           
 

Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Vector
static
<E> BuilderFactory<E,Vector<E>>
Vector.factory()
           
protected  Pair<Vector<E>,Vector<E>> Vector.splitAt(int n)
           
protected  Pair<Vector<E>,Vector<E>> Vector.splitAt(int n)
           
 



Copyright © 2014. All Rights Reserved.