Class LongArrayList
java.lang.Object
io.deephaven.util.datastructures.list.LongArrayList
Limited implementation of a growable/shrinkable List-like structure that holds longs.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidadd(long value) voidclear()booleanlonggetLong(int position) inthashCode()voidremoveElements(int from, int to) At this time, limited to only removing trailing elements.voidremoveLong(int position) At this time, limited to only removing the last element.voidset(int position, long value) intsize()
-
Constructor Details
-
LongArrayList
public LongArrayList()
-
-
Method Details
-
size
public int size() -
getLong
public long getLong(int position) -
set
public void set(int position, long value) -
add
public void add(long value) -
removeElements
public void removeElements(int from, int to) At this time, limited to only removing trailing elements.- Parameters:
from- the start position (inclusive)to- the end position (exclusive)
-
removeLong
public void removeLong(int position) At this time, limited to only removing the last element.- Parameters:
position- the position of the element to remove
-
clear
public void clear() -
equals
-
hashCode
public int hashCode()
-