Helmut Eller
2017-11-29 13:04:24 UTC
In Common Lisp this expression
(let ((x (values 'a 'b))) x)
is allowed and should return 'a.
How should the CL front-end implement that?
There's a flag Declaration.IS_SINGLE_VALUE, but I don't understand how
that interacts with type inference or code generation.
I did a little experiment: introduce a subclass of SpecialObjectType
named SingleValueType. That should mostly be like java.lang.Object but
not compatible with gnu.mapping.Values. Values instances would require
special coercion code. Anyway, that experiment didn't go far.
So should I continue with the SingleValueType idea or is there a better
way to do it?
Helmut
(let ((x (values 'a 'b))) x)
is allowed and should return 'a.
How should the CL front-end implement that?
There's a flag Declaration.IS_SINGLE_VALUE, but I don't understand how
that interacts with type inference or code generation.
I did a little experiment: introduce a subclass of SpecialObjectType
named SingleValueType. That should mostly be like java.lang.Object but
not compatible with gnu.mapping.Values. Values instances would require
special coercion code. Anyway, that experiment didn't go far.
So should I continue with the SingleValueType idea or is there a better
way to do it?
Helmut