get-output-bytevector
-- r7rs
Definition procedure
;
get-output-bytevector
(from vonuvoli
);Procedure variants:
((bytevector-output-port) -> (bytevector))
bytevector-output-port
;bytevector
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(get-output-bytevector port)
Domain: It is an error if
port
was not created withopen-output-bytevector
.Returns a bytevector consisting of the bytes that have been output to the port so far in the order they were output.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.