-
-
Subinterfaces of XIncreasingList in one.microstream.collections.types
Modifier and Type |
Interface |
Description |
interface |
XList<E> |
Extended List interface with a ton of badly needed list procedures like distinction between identity and equality
element comparison, procedure range specification, higher order (functional) procedures, proper toArray() methods,
etc.
All XList implementations have to have RandomAccess behavior.
Intelligent implementations make non-random-access implementations like simple linked lists obsolete.
|
Methods in one.microstream.collections.types that return XIncreasingList
Modifier and Type |
Method |
Description |
XIncreasingList<E> |
XIncreasingList.addAll(E... elements) |
|
XIncreasingList<E> |
XIncreasingList.addAll(E[] elements,
int offset,
int length) |
|
XIncreasingList<E> |
XIncreasingList.addAll(XGettingCollection<? extends E> elements) |
|
XIncreasingList<E> |
XIncreasingList.copy() |
|
XIncreasingList<E> |
XIncreasingList.fill(long offset,
long length,
E element) |
|
XIncreasingList<E> |
XIncreasingList.Creator.newInstance() |
|
XIncreasingList<E> |
XIncreasingList.prependAll(E... elements) |
|
XIncreasingList<E> |
XIncreasingList.prependAll(E[] elements,
int offset,
int length) |
|
XIncreasingList<E> |
XIncreasingList.prependAll(XGettingCollection<? extends E> elements) |
|
XIncreasingList<E> |
XIncreasingList.preputAll(E... elements) |
|
XIncreasingList<E> |
XIncreasingList.preputAll(E[] elements,
int offset,
int length) |
|
XIncreasingList<E> |
XIncreasingList.preputAll(XGettingCollection<? extends E> elements) |
|
XIncreasingList<E> |
XIncreasingList.putAll(E... elements) |
|
XIncreasingList<E> |
XIncreasingList.putAll(E[] elements,
int offset,
int length) |
|
XIncreasingList<E> |
XIncreasingList.putAll(XGettingCollection<? extends E> elements) |
|
XIncreasingList<E> |
XIncreasingList.range(long fromIndex,
long toIndex) |
|
XIncreasingList<E> |
XIncreasingList.reverse() |
|
XIncreasingList<E> |
XIncreasingList.set(long index,
E[] elements,
int offset,
int length) |
|
XIncreasingList<E> |
XIncreasingList.set(long index,
XGettingSequence<? extends E> elements,
long offset,
long length) |
|
XIncreasingList<E> |
XIncreasingList.setAll(long index,
E... elements) |
|
XIncreasingList<E> |
XIncreasingList.sort(Comparator<? super E> comparator) |
|
XIncreasingList<E> |
XIncreasingList.swap(long indexA,
long indexB) |
|
XIncreasingList<E> |
XIncreasingList.swap(long indexA,
long indexB,
long length) |
|
XIncreasingList<E> |
XIncreasingList.toReversed() |
|