Uses of Class
com.github.andrewoma.dexx.collection.Vector
-
Packages that use Vector Package Description 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
Fields in com.github.andrewoma.dexx.collection declared as Vector Modifier and Type Field Description private static Vector
Vector. EMPTY
Methods in com.github.andrewoma.dexx.collection that return Vector Modifier and Type Method Description @NotNull Vector<E>
Vector. append(E value)
@NotNull Vector<E>
VectorBuilder. doBuild()
@NotNull Vector<E>
Vector. drop(int n)
private Vector<E>
Vector. dropBack0(int cutIndex)
private Vector<E>
Vector. dropFront0(int cutIndex)
static <E> @NotNull Vector<E>
Vector. empty()
@NotNull Vector<E>
Vector. prepend(E value)
@NotNull Vector<E>
Vector. range(int from, boolean fromInclusive, int to, boolean toInclusive)
@NotNull Vector<E>
Vector. set(int index, E elem)
private @NotNull Vector<E>
Vector. slice(int from, int until)
@NotNull Vector<E>
Vector. tail()
@NotNull Vector<E>
Vector. take(int n)
Methods in com.github.andrewoma.dexx.collection that return types with arguments of type Vector Modifier and Type Method Description static <E> @NotNull BuilderFactory<E,Vector<E>>
Vector. factory()
protected @NotNull Pair<Vector<E>,Vector<E>>
Vector. splitAt(int n)
protected @NotNull Pair<Vector<E>,Vector<E>>
Vector. splitAt(int n)
-