peek-u8
-- r7rs
Definition procedure
;
Procedure variants:
(() -> (byte-or-eof))
byte-or-eof
;((binary-input-port-eof) -> (eof-object))
binary-input-port-eof
;eof-object
;((binary-input-port-open) -> (byte-or-eof))
binary-input-port-open
;byte-or-eof
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(peek-u8) (peek-u8 port)
Returns the next byte available from the binary input
port
, but without updating theport
to point to the following byte. If no more bytes are available, an end-of-file object is returned.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.