Next: Closing, Previous: Reading, Up: Input and Output
[Generic procedures for writing to ports.]
Return the print state of the port port. If port has no associated print state,
#f
is returned.
Send a representation of obj to port or to the current output port if not given.
The output is designed to be machine readable, and can be read back with
read
(see Reading). Strings are printed in doublequotes, with escapes if necessary, and characters are printed in `#\' notation.
Send a representation of obj to port or to the current output port if not given.
The output is designed for human readability, it differs from
write
in that strings are printed without doublequotes and escapes, and characters are printed as perwrite-char
, not in `#\' form.
Send a newline to port. If port is omitted, send to the current output port.
Create a new port which behaves like port, but with an included print state pstate. pstate is optional. If pstate isn't supplied and port already has a print state, the old print state is reused.
Option interface for the print options. Instead of using this procedure directly, use the procedures
print-enable
,print-disable
,print-set!
andprint-options
.
Write message to destination, defaulting to the current output port. message can contain
~A
(was%s
) and~S
(was%S
) escapes. When printed, the escapes are replaced with corresponding members of ARGS:~A
formats usingdisplay
and~S
formats usingwrite
. If destination is#t
, then use the current output port, if destination is#f
, then return a string containing the formatted text. Does not add a trailing newline.
Send character chr to port.
Write size bytes at buffer to port.
Note that this function does not update
port-line
andport-column
(see Reading).
Flush the specified output port, or the current output port if port is omitted. The current output buffer contents are passed to the underlying port implementation (e.g., in the case of fports, the data will be written to the file and the output buffer will be cleared.) It has no effect on an unbuffered port.
The return value is unspecified.