static fun encodeUInt16List(vararg elements: Int): Bytes!
(source)
Encode a list of 16-bit unsigned integers.
elements
- Int: the integers to write
IllegalArgumentException
- if any values are too large to be represented in 16 bits
Return
Bytes!: SSZ encoding in a Bytes
value
static fun encodeUInt16List(elements: MutableList<Int!>!): Bytes!
(source)
Encode a list of 16-bit unsigned integers.
elements
- MutableList<Int!>!: the integers to write
IllegalArgumentException
- if any values are too large to be represented in 16 bits