open fun writeULongIntList(bitLength: Int, vararg elements: Long): Unit
(source)open fun writeULongIntList(bitLength: Int, elements: MutableList<Long>): Unit
(source)
Write a list of unsigned long integers. Note that the elements
are native signed longs, but will be interpreted as an unsigned values.
bitLength
- the bit length of the encoded integers (must be a multiple of 8)
elements
- the long integers to write as a list
IllegalArgumentException
- if any values are too large for the specified bit length