static fun encodeIntList(bitLength: Int, vararg elements: Int): Bytes!
(source)
Encode a list of two's compliment integers.
bitLength
- Int: the bit length of the encoded integers (must be a multiple of 8)
elements
- Int: the integers to write
IllegalArgumentException
- if any values are too large for the specified bitLength
Return
Bytes!: SSZ encoding in a Bytes
value
static fun encodeIntList(bitLength: Int, elements: MutableList<Int!>!): Bytes!
(source)
Encode a list of two's compliment integers.
bitLength
- Int: the bit length of the encoded integers (must be a multiple of 8)
elements
- MutableList<Int!>!: the list of Integers to write
IllegalArgumentException
- if any values are too large for the specified bitLength