bytevector
-- r7rs
Definition constructor
;
bytevector
(from vonuvoli
);Procedure variants:
(() -> (bytevector-empty))
bytevector-empty
;((byte |1...|) -> (bytevector-not-empty))
byte
;...
-- at least one time;bytevector-not-empty
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(bytevector byte ...)
Returns a newly allocated bytevector containing its arguments.
(bytevector 1 3 5 1 3 5) ===> #u8(1 3 5 1 3 5) (bytevector) ===> #u8()
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.