-
public class LongArray
Object wrapping an auto-expanding long[]. Like an ArrayListbut without the autoboxing.
-
-
Method Summary
-
-
Method Detail
-
createWithInitialCapacity
static LongArray createWithInitialCapacity(int initialCapacity)
-
add
void add(long value)
-
get
long get(int index)
-
set
void set(int index, long value)
-
size
int size()
-
isEmpty
boolean isEmpty()
-
dropTail
void dropTail(int n)
Removes the *last* n items of the array all at once.
-
-
-
-