tuweni / org.apache.tuweni.bytes / Bytes / concatenate

concatenate

open static fun concatenate(values: MutableList<Bytes!>!): Bytes! (source)

Create a value containing the concatenation of the values provided.

Parameters

values - MutableList<Bytes!>!: The values to copy and concatenate.

Exceptions

IllegalArgumentException - if the result overflows an int.

Return
Bytes!: A value containing the result of concatenating the value from values in their provided order.

open static fun concatenate(vararg values: Bytes!): Bytes! (source)

Create a value containing the concatenation of the values provided.

Parameters

values - Bytes!: The values to copy and concatenate.

Exceptions

IllegalArgumentException - if the result overflows an int.

Return
Bytes!: A value containing the result of concatenating the value from values in their provided order.