public class LongParallelList
extends java.lang.Object
WritableLongList
. myListCount
(a number of sublists),
is set during object initialization, and is final. Modifier and Type | Class and Description |
---|---|
class |
LongParallelList.Iterator |
Constructor and Description |
---|
LongParallelList(WritableLongList storage,
int listCount) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
LongList |
createListAccessor(int list) |
long |
get(int offset,
int list) |
void |
get(int offset,
long[] dst) |
void |
insert(int offset,
long... values) |
boolean |
isEmpty() |
LongParallelList.Iterator |
iterator(int from) |
LongParallelList.Iterator |
iterator(int from,
int to) |
void |
removeAt(int offset) |
void |
removeRange(int from,
int to) |
void |
set(int offset,
int list,
long value) |
int |
size() |
public LongParallelList(WritableLongList storage, int listCount)
public int size()
public LongList createListAccessor(int list)
public long get(int offset, int list)
public void get(int offset, long[] dst)
public void set(int offset, int list, long value)
public void clear()
public void insert(int offset, long... values)
public LongParallelList.Iterator iterator(int from)
public LongParallelList.Iterator iterator(int from, int to)
public void removeAt(int offset)
public void removeRange(int from, int to)
public boolean isEmpty()