![[LISPWORKS]](../Graphics/LWSmall.gif)
![[Common Lisp HyperSpec (TM)]](../Graphics/CLHS_Sm.gif) 
 ![[Previous]](../Graphics/Prev.gif)
![[Up]](../Graphics/Up.gif)
![[Next]](../Graphics/Next.gif)
Syntax:
make-concatenated-stream &rest input-streams => concatenated-stream
Arguments and Values:
input-stream---an input stream.
concatenated-stream---a concatenated stream.
Description:
Returns a concatenated stream that has the indicated input-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 signal type-error if any argument is not an input stream.
See Also:
Notes: None.
![[Starting Points]](../Graphics/StartPts.gif)
![[Contents]](../Graphics/Contents.gif)
![[Index]](../Graphics/Index.gif)
![[Symbols]](../Graphics/Symbols.gif)
![[Glossary]](../Graphics/Glossary.gif)
![[Issues]](../Graphics/Issues.gif)