open fun writeIntList(bitLength: Int, vararg elements: Int): Unit
(source)open fun writeIntList(bitLength: Int, elements: MutableList<Int>): Unit
(source)
Write a list of two's compliment integers.
bitLength
- the bit length of the encoded integers (must be a multiple of 8)
elements
- the integers to write as a list
IllegalArgumentException
- if any values are too large for the specified bit length