public interface LongArray extends BigArray
| Modifier and Type | Method and Description |
|---|---|
void |
fill(long fromIndex,
long toIndex,
long value)
Fill slots between
fromIndex inclusive to toIndex exclusive with value. |
long |
get(long index)
Get an element given its index.
|
long |
increment(long index,
long inc)
Increment value at the given index by
inc and return the value. |
long |
set(long index,
long value)
Set a value at the given index and return the previous value.
|
closelong get(long index)
long set(long index,
long value)
long increment(long index,
long inc)
inc and return the value.void fill(long fromIndex,
long toIndex,
long value)
fromIndex inclusive to toIndex exclusive with value.Copyright © 2009–2016. All rights reserved.