Interface IndexedList<E>
-
- All Superinterfaces:
Iterable<E>
,java.lang.Iterable<E>
,List<E>
,Traversable<E>
- All Known Implementing Classes:
AbstractIndexedList
,ArrayList
,Vector
public interface IndexedList<E> extends List<E>
IndexedList
implementations guarantee fast random access to elements viaList.get(int)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull IndexedList<E>
append(E elem)
Returns a list with the specified element appended to the bottom of the list.@NotNull IndexedList<E>
drop(int number)
Returns a list containing all elements in this list, excluding the firstnumber
of elements.@NotNull IndexedList<E>
prepend(E elem)
Returns a list with the specified element prepended to the top of the list.@NotNull IndexedList<E>
range(int from, boolean fromInclusive, int to, boolean toInclusive)
Returns a list containing a contiguous range of elements from this list.@NotNull IndexedList<E>
set(int i, E elem)
Returns a list with the element set to the value specified at the index (zero-based).@NotNull IndexedList<E>
take(int number)
Returns a list containing the firstnumber
of elements from this list.-
Methods inherited from interface com.github.andrewoma.dexx.collection.List
asList, first, get, indexOf, last, lastIndexOf, tail
-
Methods inherited from interface com.github.andrewoma.dexx.collection.Traversable
forEach, isEmpty, makeString, makeString, size, to, toArray, toArray, toIndexedList, toSet, toSortedSet
-
-
-
-
Method Detail
-
set
@NotNull @NotNull IndexedList<E> set(int i, E elem)
Description copied from interface:List
Returns a list with the element set to the value specified at the index (zero-based).
-
append
@NotNull @NotNull IndexedList<E> append(E elem)
Description copied from interface:List
Returns a list with the specified element appended to the bottom of the list.
-
prepend
@NotNull @NotNull IndexedList<E> prepend(E elem)
Description copied from interface:List
Returns a list with the specified element prepended to the top of the list.
-
drop
@NotNull @NotNull IndexedList<E> drop(int number)
Description copied from interface:List
Returns a list containing all elements in this list, excluding the firstnumber
of elements.
-
take
@NotNull @NotNull IndexedList<E> take(int number)
Description copied from interface:List
Returns a list containing the firstnumber
of elements from this list.
-
range
@NotNull @NotNull IndexedList<E> range(int from, boolean fromInclusive, int to, boolean toInclusive)
Description copied from interface:List
Returns a list containing a contiguous range of elements from this list.
-
-