Uses of Interface
com.github.andrewoma.dexx.collection.IndexedList
Packages that use IndexedList
Package
Description
Dexx collections are a port of Scala's immutable, persistent collection classes to pure Java.
-
Uses of IndexedList in com.github.andrewoma.dexx.collection
Classes in com.github.andrewoma.dexx.collection that implement IndexedListModifier and TypeClassDescriptionclassArrayList<E>ArrayListis anIndexedListimplementation backed by an array.classVector<E>Vector is a general-purpose, immutable data structure.Methods in com.github.andrewoma.dexx.collection that return IndexedListModifier and TypeMethodDescription@NotNull IndexedList<E> private static <E> IndexedList<E> IndexedLists.construct(E... es) static <E> @NotNull IndexedList<E> ArrayLists.copyOf(E[] es) static <E> @NotNull IndexedList<E> static <E> @NotNull IndexedList<E> static <E> @NotNull IndexedList<E> IndexedLists.copyOf(E[] es) static <E> @NotNull IndexedList<E> static <E> @NotNull IndexedList<E> static <E> @NotNull IndexedList<E> ArrayLists.copyOfTraversable(Traversable<E> traversable) static <E> @NotNull IndexedList<E> IndexedLists.copyOfTraversable(Traversable<E> traversable) @NotNull IndexedList<E> IndexedList.drop(int number) static <E> @NotNull IndexedList<E> ArrayLists.of(E... elements) static <E> @NotNull IndexedList<E> IndexedLists.of()static <E> @NotNull IndexedList<E> IndexedLists.of(E t) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4, E e5) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) static <E> @NotNull IndexedList<E> IndexedLists.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) static <E> @NotNull 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> @NotNull 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) @NotNull IndexedList<E> @NotNull IndexedList<E> IndexedList.range(int from, boolean fromInclusive, int to, boolean toInclusive) @NotNull IndexedList<E> @NotNull IndexedList<E> IndexedList.take(int number) @NotNull 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 IndexedListModifier and TypeMethodDescriptionstatic <E> @NotNull Builder<E, IndexedList<E>> ArrayLists.builder()static <E> @NotNull Builder<E, IndexedList<E>> IndexedLists.builder()static <E> @NotNull BuilderFactory<E, IndexedList<E>> ArrayLists.factory()static <E> @NotNull 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 IndexedListMethods in com.github.andrewoma.dexx.collection.internal.base that return IndexedList