u8array_append(a1, @rest ...)
s8array_append(a1, @rest ...)
u16array_append(a1, @rest ...)
s16array_append(a1, @rest ...)
u32array_append(a1, @rest ...)
s32array_append(a1, @rest ...)
u64array_append(a1, @rest ...)
s64array_append(a1, @rest ...)
Return a new integer array created by appending the integer arrays a1, ...
.
u8array_append(#u8[1, 2], #u8[3, 4])
// #u8[1, 2, 3, 4]
s64array_append(#s64[1, 2], #s64[3, 4])
// #s64[1, 2, 3, 4]