Uses of Class
one.microstream.collections._intList
-
Packages that use _intList Package Description one.microstream.collections -
-
Uses of _intList in one.microstream.collections
Methods in one.microstream.collections that return _intList Modifier and Type Method Description _intList
_intList. add(int... elements)
_intList
_intList. addAll(int[] elements, int offset, int length)
_intList
_intList. addAll(_intList elements)
_intList
_intList. copy()
_intList
_intList. ensureCapacity(int minCapacity)
_intList
_intList. ensureFreeCapacity(int requiredFreeCapacity)
_intList
_intList. fill(int offset, int length, int element)
_intList
_intList. iterate(_intIndexProcedure procedure)
_intList
_intList. iterate(_intProcedure procedure)
_intList
_intList.Factory. newInstance()
_intList
_intList. prepend(int... elements)
_intList
_intList. prependAll(int[] elements, int offset, int length)
_intList
_intList. prependAll(_intList elements)
_intList
_intList. preput(int... elements)
_intList
_intList. preputAll(int[] elements, int offset, int length)
_intList
_intList. preputAll(_intList elements)
_intList
_intList. process(_intProcedure procedure)
_intList
_intList. put(int... elements)
_intList
_intList. putAll(int[] elements, int offset, int length)
_intList
_intList. putAll(_intList elements)
_intList
_intList. removeRange(int startIndex, int length)
_intList
_intList. reverse()
_intList
_intList. set(int offset, int... elements)
_intList
_intList. set(int offset, int[] src, int srcIndex, int srcLength)
_intList
_intList. shiftBy(int sourceIndex, int distance)
_intList
_intList. shiftBy(int sourceIndex, int distance, int length)
_intList
_intList. shiftTo(int sourceIndex, int targetIndex)
_intList
_intList. shiftTo(int sourceIndex, int targetIndex, int length)
_intList
_intList. sort()
_intList
_intList. swap(int indexA, int indexB)
_intList
_intList. swap(int indexA, int indexB, int length)
_intList
_intList. toReversed()
Methods in one.microstream.collections with parameters of type _intList Modifier and Type Method Description _intList
_intList. addAll(_intList elements)
boolean
_intList. containsAll(_intList elements)
int
_intList. inputAll(int index, _intList elements)
int
_intList. insertAll(int index, _intList elements)
_intList
_intList. prependAll(_intList elements)
_intList
_intList. preputAll(_intList elements)
_intList
_intList. putAll(_intList elements)
int
_intList. removeAll(_intList elements)
static int
Abstract_intArrayStorage. removeAll(int[] data, int size, _intList elements, int skip, Integer limit, int removeMarker)
int
_intList. replaceAll(_intList elements, int replacement)
Deprecated.static int
Abstract_intArrayStorage. replaceAll(int[] data, int size, _intList oldElements, int newElement, int skip, Integer limit)
static int
Abstract_intArrayStorage. retainAll(int[] data, int size, _intList elements, int removeMarker)
static boolean
Abstract_intArrayStorage. rngContainsAll(int[] data, int size, int offset, int length, _intList elements)
static int
Abstract_intArrayStorage. rngRemoveAll(int[] data, int size, int offset, int length, _intList elements, int skip, Integer limit, int removeMarker)
static int
Abstract_intArrayStorage. rngReplaceAll(int[] data, int size, int offset, int length, _intList oldElements, int newElement)
static int
Abstract_intArrayStorage. rngReplaceAll(int[] data, int size, int offset, int length, _intList oldElements, int newElement, int skip, Integer limit)
static int
Abstract_intArrayStorage. rngRetainAll(int[] data, int size, int offset, int length, _intList elements, int removeMarker)
Constructors in one.microstream.collections with parameters of type _intList Constructor Description _intList(_intList original)
Copy constructor that instantiates a new instance with a copy of the passed original instance's data and same size.
-