Email list hosting service & mailing list manager

(stream-cons (1) stream-null) => stream David Van Horn (10 Nov 2006 23:38 UTC)
Re: (stream-cons (1) stream-null) => stream David Van Horn (10 Nov 2006 23:46 UTC)
Re: (stream-cons (1) stream-null) => stream AndrevanTonder (11 Nov 2006 00:41 UTC)
Re: (stream-cons (1) stream-null) => stream David Van Horn (11 Nov 2006 01:03 UTC)
Re: (stream-cons (1) stream-null) => stream AndrevanTonder (11 Nov 2006 12:32 UTC)
Re: (stream-cons (1) stream-null) => stream David Van Horn (11 Nov 2006 02:21 UTC)
Re: (stream-cons (1) stream-null) => stream AndrevanTonder (11 Nov 2006 14:19 UTC)

Re: (stream-cons (1) stream-null) => stream David Van Horn 10 Nov 2006 23:46 UTC

David Van Horn wrote:
> There is a serious bug in the reference implementation of SRFI 40, which
> can be demonstrated by the following expression:
>
>    (stream-cons (1) stream-null)

Sorry, this example should be instead:

     (stream-cdr (stream-cons (1) stream-null))

Which should evaluate to a stream, but the implementation gives an error.

David