tuweni / org.apache.tuweni.ssz / SSZ / encodeUInt64List

encodeUInt64List

static fun encodeUInt64List(vararg elements: Long): Bytes! (source)

Encode a list of 64-bit unsigned integers. Note that the elements are native signed longs, but will be interpreted as an unsigned values.

Parameters

elements - Long: the integers to write

Return
Bytes!: SSZ encoding in a Bytes value

static fun encodeUInt64List(elements: MutableList<Long!>!): Bytes! (source)

Encode a list of 64-bit unsigned integers. Note that the elements are native signed longs, but will be interpreted as an unsigned values.

Parameters

elements - MutableList<Long!>!: the integers to write

Return
Bytes!: SSZ encoding in a Bytes value