input-port-open?
-- r7rs
Definition predicate
;
input-port-open?
(from vonuvoli
);Procedure variants:
((input-port-open) -> (true))
input-port-open
;true
;((input-port) -> (false))
input-port
;false
;((port) -> (false))
((any) -> (false))
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(input-port-open? port) (output-port-open? port)
Returns
#t
ifport
is still open and capable of performing input or output, respectively, and#f
otherwise.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.
input-port-open
;true
;input-port
;false
;port
;any
;