read-error?
-- r7rs
Definition predicate
;
read-error?
(from vonuvoli
);Procedure variants:
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(read-error? obj) (file-error? obj)
Error type predicates. Returns
#t
ifobj
is an object raised by theread
procedure or by the inability to open an input or output port on a file, respectively. Otherwise, it returns#f
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.