[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Other miscellaneous stuff

This page is part of the web mail archives of SRFI 41 from before July 7th, 2015. The new archives for SRFI 41 contain all messages, not just those from before July 7th, 2015.



Another minor issue.

In the code below:

  (define-syntax define-stream
    (syntax-rules ()
      ((define-stream (name . formal) body0 body1 ...)
        (define name (stream-lambda formal body0 body1 ...)))
      ((define-stream (name formals ...) body0 body1 ...)
        (define name (stream-lambda (formals ...) body0 body1 ...)))))

The second case is redundant since (name . formal) matches any pair,
including all those matched by (name formals ...).

Aziz,,,