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