[Not speaking for the editors, as usual.]
William D Clinger <will_at_ccs.neu.edu> writes:
> The procedural record layer (r6rs records procedural)
> is strictly more expressive than the syntactic layers,
> (r6rs records explicit) and (r6rs records implicit),
> because the procedural layer can create new subtypes
> given only a record-type-descriptor, but the two
> syntactic layers cannot.
Yes; this is one of the issues listed in the Issues section of SRFI
76.
It would also be quite easy to fix. Either by allowing a second
alternative form for the parent clause
(parent (rtd constructor-desc))
where rtd and constructor-desc must evaluate to an rtd and a
constructor descriptor, or, alternatively, by introducing another
clause like so:
(parent-descriptors rtd constructor-desc)
> Although simplification of the syntactic layers is
> one solution to this problem, I would suggest a more
> radical solution: omit both syntactic layers from the
> R6RS. Both could be described by a SRFI and provided
> by portable reference implementations that build on
> the procedural layer.
That would be a disaster. Many real-world Scheme programs contain
syntactic record-type definitions. Unfortunately, as (almost?) every
single Scheme implementation comes with its own record-type-definition
form, there record-type definitions all use definitions. This makes
many Scheme programs unnecessarily unportable, but, worse, very hard
to read, and harder to modify after the fact. ?There ought to be at
least one standard notation.
--
Cheers =8-} Mike
Friede, V?lkerverst?ndigung und ?berhaupt blabla
Received on Wed Nov 22 2006 - 04:26:17 UTC