Paul Reiners
Paul Reiners

Reputation: 7886

Streams in Common Lisp?

Section 3.5 of Structure and Interpretation of Computer Programs describes streams. Does Common Lisp have such streams built in or is there a good Common Lisp library implementing such streams?

[I mean streams in all the generality presented in section 3.5 of SICP; not just your usual i/o streams.]

Upvotes: 5

Views: 1167

Answers (1)

jmbr
jmbr

Reputation: 3348

SERIES is a featureful library providing that sort of functionality. For a shorter and more readable example of how the concept of streams maps to Common Lisp, see Pipes.

Upvotes: 5

Related Questions