join: Takes an array of Bytes and concatenates them sequentially (one after another) into a single BytesBlob.
join
The resulting blob has length of N * K.
N * K
Opposite of split.
split
Input: [[a0, a1], [a2, a3], [a4, a5]]
Output: [a0, a1, a2, a3, a4, a5]
https://graypaper.fluffylabs.dev/#/9a08063/3ed4013ed401?v=0.6.6
join: Takes an array of Bytes and concatenates them sequentially (one after another) into a single BytesBlob.The resulting blob has length of
N * K.Opposite of
split.Input: [[a0, a1], [a2, a3], [a4, a5]]
Output: [a0, a1, a2, a3, a4, a5]
https://graypaper.fluffylabs.dev/#/9a08063/3ed4013ed401?v=0.6.6