Function make-concatenated-stream

Syntax:

make-concatenated-stream &rest input-streams β†’ concatenated-stream

Arguments and Values:

input-streamβ€”an input stream.

concatenated-streamβ€”a concatenated stream.

Description:

21.2.0 5Returns a concatenated stream that has the indicated input-streams initially associated with it.

Examples:

POSSIBLE CLEAN-UP ISSUE Symbolics returns 1.
 (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:

concatenated-stream-streams

Notes:

None.