Next: buffer_from_strings
Prev: buffer_add
buffer_append(buffer1, buffer2)This function returns the result of appending buffer2 to the end of buffer1.
Examples:
buffer_append(%[65, 66, 67, 10], %[67, 66, 65, 10])
=> %[65, 66, 67, 10, 67, 66, 65, 10]