![[LISPWORKS]](/image.pl?url=http%3a%2f%2fwww.lispworks.com%2fdocumentation%2fHyperSpec%2fBody%2f..%2fGraphics%2fLWSmall.gif&f=jpg&w=240)
![[Common Lisp HyperSpec (TM)]](/image.pl?url=http%3a%2f%2fwww.lispworks.com%2fdocumentation%2fHyperSpec%2fBody%2f..%2fGraphics%2fCLHS_Sm.gif&f=jpg&w=240)
Syntax:
make-broadcast-stream&rest streams =>broadcast-stream
Arguments and Values:
broadcast-stream---abroadcast stream.
Description:
Returns abroadcast stream.
Examples:
(setq a-stream (make-string-output-stream) b-stream (make-string-output-stream)) => #<String Output Stream> (format (make-broadcast-stream a-stream b-stream) "this will go to both streams") => NIL (get-output-stream-string a-stream) => "this will go to both streams" (get-output-stream-string b-stream) => "this will go to both streams"
Side Effects: None.
Affected By: None.
Exceptional Situations:
Should signal an error oftypetype-error if anystream is not anoutputstream.
See Also:
Notes: None.