Re: New draft (#2) and last call for comments on SRFI 274: Extended List Conversion Procedures
Peter McGoron 21 Jul 2026 03:04 UTC
> Why start = length is an error? Vectors and strings allow it. R7RS
only says start <= end and end <= length.
I find (vector-copy '#(0 1 2) 3) to be strange as I would expect that
the 3rd element (which doesn't exist) to be in that list, as `start` is
inclusive.
However, if the R7RS allows it, I will align the SRFI with the R7RS.
-- Peter McGoron