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