open static fun concatenate(values: MutableList<Bytes!>!): Bytes! (source)
Create a value containing the concatenation of the values provided.
values - MutableList<Bytes!>!: The values to copy and concatenate.
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.
values - Bytes!: The values to copy and concatenate.
IllegalArgumentException - if the result overflows an int.
Return
Bytes!: A value containing the result of concatenating the value from values in their provided order.