chickadee » sicp » stream-cdr

stream-cdr streamprocedure

Forces and returns the cdr of the stream.

stream
The stream whose cdr to force
(define (stream-cdr stream) (force (cdr stream)))