bytevector-append
-- r7rs
Definition procedure
;
bytevector-append
(from vonuvoli
);Procedure variants:
(() -> (bytevector-empty))
bytevector-empty
;((bytevector |1...|) -> (bytevector))
bytevector
;...
-- at least one time;bytevector
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(bytevector-append bytevector ...)
Returns a newly allocated bytevector whose elements are the concatenation of the elements in the given bytevectors.
(bytevector-append #u8(0 1 2) #u8(3 4 5)) ===> #u8(0 1 2 3 4 5)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.