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

Re: Restricting the procedures to proper lists

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



Olin Shivers writes:
> For me, the current BIG QUESTION is this: some list-processing procedures
> do not always examine the whole list -- such as the procedures that search
> lists, like FIND, MEMBER, etc. Suppose we decide to restrict these
> procedures to proper lists. What is the spec going to be for invocations
> where the procedure never examines the whole list, and so cannot see the
> terminator? ...

I believe that the right thing to do is to stick with RNRS "it is an error"
wording. Some implementations have different "modes" of compilation,
allowing one to choose between optimization for speed or better error
checking. I think that NULL-LIST? deserves the same treatment: the
library should left unspecified what happens when NULL-LIST? is
applied to non-nil atoms.

Regards,
Sergei

P.S. I also think that the specification for LAST, LIST-COPY
TAKE-RIGHT, TAKE-RIGHT!,  DROP-RIGHT, and  DROP-RIGHT!
should be tightened to exclude dotted lists.