Add arbitrary size byte arrays #947

Merged
zxq9 merged 7 commits from arbitrary_sized_byte_arrays into ceres 2023-06-30 23:21:50 +09:00
Showing only changes of commit df88a13e92 - Show all commits

View File

@ -392,7 +392,7 @@ Returns the hexadecimal representation of the byte array
Bytes.concat : (a : bytes(m), b : bytes(n)) => bytes(m + n) Bytes.concat : (a : bytes(m), b : bytes(n)) => bytes(m + n)
``` ```
Concatenates two byte arrays, if `m` and `n` are known at compile time, the Concatenates two byte arrays. If `m` and `n` are known at compile time, the
result can be used as a fixed size byte array, otherwise it has type `bytes()`. result can be used as a fixed size byte array, otherwise it has type `bytes()`.