ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL
Home Previous Up Next Table of Contents Index
  ANSI Common Lisp   21 Streams   21.2 Dictionary of Streams

21.2.47 make-concatenated-stream Function

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

Exceptional Situations:
Should signal type-error if any argument is not an input stream.

See Also:
concatenated-stream-streams

Allegro CL Implementation Details:
None.

Home Previous Up Next Table of Contents Index
© Franz Inc. All Rights Reserved - File last updated 2022-07-25