stream

[procedure] stream obj ...

SRFI-40: Returns a newly allocated finite stream of its arguments. See also stream-cons.

Examples:

(stream 'a (+ 3 4) 'c)                      => (stream 'a 7 'c)
(stream)                                    => stream-null