get_output_bytes(s)
Return the bytes written to the byte array output stream s as an u8array.
s
let b = byte_array_writer() write_byte(123, b) write_byte(105, b) get_output_bytes(b) // #u8[123, 105]
Core Module Index | Contents