display
-- r7rs
Definition procedure
;
Procedure variants:
((value) -> (undefined))
((value textual-output-port-open) -> (undefined))
value
;textual-output-port-open
;undefined
;scheme:write
-- (scheme write)
;scheme
-- (scheme)
;(display obj) (display obj port)
Writes a representation of
obj
to the given textual outputport
. Strings that appear in the written representation are output as if bywrite-string
instead of bywrite
. Symbols are not escaped. Character objects appear in the representation as if written bywrite-char
instead of bywrite
.The
display
representation of other objects is unspecified. However,display
must not loop forever on self-referencing pairs, vectors, or records. Thus if the normalwrite
representation is used, datum labels are needed to represent cycles as inwrite
.Implementations may support extended syntax to represent record types or other types that do not have datum representations.
The
display
procedure returns an unspecified value.Rationale: The
write
procedure is intended for producing machine-readable output anddisplay
for producing human-readable output.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.