open fun setLong(i: Int, value: Long): Unit
Set the 8 bytes starting at the specified index to the specified long value.
i - Int: The index, which must less than or equal to size() - 8.
i
size() - 8
value - Long: The long value.
value
IndexOutOfBoundsException - if i < 0 or i > size() - 8.
IndexOutOfBoundsException
i < 0
i > size() - 8