![[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-concatenated-stream&rest input-streams =>concatenated-stream
Arguments and Values:
concatenated-stream---aconcatenated stream.
Description:
Returns aconcatenated stream that has the indicatedinput-streams initially associated with it.
Examples:
(read (make-concatenated-stream (make-string-input-stream "1") (make-string-input-stream "2"))) => 12
Side Effects: None.
Affected By: None.
Exceptional Situations:
Should signaltype-error if any argument is not aninputstream.
See Also:
Notes: None.