Next: bytevectors 8 pred, Previous: bytevectors 8 views, Up: bytevectors 8 [Index]
Return a newly allocated bytevector whose bytes form the concatenation of the given bytevectors.
Append the elements of bvs-list together into a single bytevector. Guaranteed to return a freshly allocated bytevector.
Reverse bvs-list then concatenate the elements, which must be bytevectors. The first nbytes bytes in final-bv are consed onto the beginning of bvs-list before performing the reversal and concatenation operations.
final-bv defaults to the empty bytevector and nbytes defaults to the length of final-bv.
This procedure is useful in the construction of procedures that accumulate byte data into lists of byte buffers, and wish to convert the accumulated data into a single bytevector when done.
Construct a bytevector of size len by applying integer->byte to each index in the range [0, len) to produce the corresponding byte element. The order in which integer->byte is applied to the indices is not specified.