public interface ILongBuffer
Modifier and Type | Method and Description |
---|---|
long |
longAt(int index)
Get the long at the given index.
|
int |
lower32At(int index)
Get the lower 32 bit of the long at given index.
|
void |
modifyEntry(int index,
long newVal)
Modify the entry at given index with a new val.
|
int |
size()
Get the number of long in the buffer.
|
int |
upper32At(int index)
Get the upper 32 bit of the long at the given index.
|
long longAt(int index)
index
- intint lower32At(int index)
index
- intvoid modifyEntry(int index, long newVal)
index
- intnewVal
- longint size()
int upper32At(int index)
index
- int