Email list hosting service & mailing list manager

optional argument notation Marc Feeley (18 Dec 2000 20:58 UTC)
Re: optional argument notation shivers@xxxxxx (18 Dec 2000 21:14 UTC)
Re: optional argument notation Marc Feeley (18 Dec 2000 21:35 UTC)

optional argument notation Marc Feeley 18 Dec 2000 20:58 UTC

I notice that in all of your documents (including SRFI-1) you use this
notation for optional arguments:

    string-hash    s [bound start end] -> integer

I find this notation to be missleading because it suggests that you
can only pass one or four parameters (but I believe you want 1, 2, or
4).  So you should write:

    string-hash    s [bound [start end]] -> integer

Marc