Movatterモバイル変換


[0]ホーム

URL:


[LISPWORKS][Common Lisp HyperSpec (TM)][Previous][Up][Next]


FunctionMAKE-BROADCAST-STREAM

Syntax:

make-broadcast-stream&rest streams =>broadcast-stream

Arguments and Values:

stream---anoutputstream.

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:

broadcast-stream-streams

Notes: None.


The followingX3J13 cleanup issue,not part of the specification, applies to this section:


[Starting Points][Contents][Index][Symbols][Glossary][Issues]
Copyright 1996-2005, LispWorks Ltd. All rights reserved.


[8]ページ先頭

©2009-2025 Movatter.jp