get

abstract fun get(index: Int): Long

Get the long at the given index. Behavior is undefined for out-of-range indices.


open fun get(index: Int, arr: LongArray, off: Int, len: Int): Int

Bulk get: read at least one and at most len longs starting from index * into arr[off:off+len] and return the actual number of values that have been read.