| Thread overview | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
September 18, 2015 Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Any suggestions on fixing http://forum.dlang.org/post/mailman.5452.1422372219.9932.digitalmars-d-bugs@puremagic.com I really need `opEquals` in pure unittest { import std.variant : Algebraic; import std.conv : to; auto x = Algebraic!(long, double)(5.to!long); assert(x.hasValue); auto y = x; assert(y == x); } to be pure. This currently fails as t_algebraic.d(11,12): Error: pure function 't_algebraic.__unittestL3_1' cannot call impure function 'std.variant.VariantN!(8LU, long, double).VariantN.opEquals!(VariantN!(8LU, long, double)).opEquals' Ideas anyone? | ||||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Nordlöw | On Friday, 18 September 2015 at 13:22:14 UTC, Nordlöw wrote: > Ideas anyone? I tried tagging up `VariantN` with pure until I got to @property inout(T)* peek(T)() inout pure { static if (!is(T == void)) static assert(allowed!(T), "Cannot store a " ~ T.stringof ~ " in a " ~ VariantN.stringof); if (type != typeid(T)) return null; static if (T.sizeof <= size) return cast(inout T*)&store; else return *cast(inout T**)&store; } which then errors as variant.d(701,13): Error: pure function 'std.variant.VariantN!32LU.VariantN.peek!void.peek' cannot call impure function 'object.opEquals' for the line if (type != typeid(T)) Why is `object.opEquals` not pure? | |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Nordlöw | On Friday, 18 September 2015 at 13:53:52 UTC, Nordlöw wrote:
> On Friday, 18 September 2015 at 13:22:14 UTC, Nordlöw wrote:
>> Ideas anyone?
>
> I tried tagging up `VariantN` with pure until I got to
>
> @property inout(T)* peek(T)() inout pure
> {
> static if (!is(T == void))
> static assert(allowed!(T), "Cannot store a " ~ T.stringof
> ~ " in a " ~ VariantN.stringof);
> if (type != typeid(T))
> return null;
> static if (T.sizeof <= size)
> return cast(inout T*)&store;
> else
> return *cast(inout T**)&store;
> }
>
> which then errors as
>
> variant.d(701,13): Error: pure function 'std.variant.VariantN!32LU.VariantN.peek!void.peek' cannot call impure function 'object.opEquals'
>
> for the line
>
> if (type != typeid(T))
>
> Why is `object.opEquals` not pure?
It's a long story, but it boils down to the simple fact that nobody's gotten around to it yet. I think the plan was to make it templated, but Jonathan Davis knows more about it than anyone.
| |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Nordlöw | On 9/18/15 9:53 AM, Nordlöw wrote:
> On Friday, 18 September 2015 at 13:22:14 UTC, Nordlöw wrote:
>> Ideas anyone?
>
> I tried tagging up `VariantN` with pure until I got to
>
> @property inout(T)* peek(T)() inout pure
> {
> static if (!is(T == void))
> static assert(allowed!(T), "Cannot store a " ~ T.stringof
> ~ " in a " ~ VariantN.stringof);
> if (type != typeid(T))
> return null;
> static if (T.sizeof <= size)
> return cast(inout T*)&store;
> else
> return *cast(inout T**)&store;
> }
>
> which then errors as
>
> variant.d(701,13): Error: pure function
> 'std.variant.VariantN!32LU.VariantN.peek!void.peek' cannot call impure
> function 'object.opEquals'
>
> for the line
>
> if (type != typeid(T))
>
> Why is `object.opEquals` not pure?
What about type !is typeid(T)?
This should solve most cases.
-Steve
| |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Meta | On Friday, 18 September 2015 at 13:55:38 UTC, Meta wrote: > On Friday, 18 September 2015 at 13:53:52 UTC, Nordlöw wrote: >> On Friday, 18 September 2015 at 13:22:14 UTC, Nordlöw wrote: >>> Ideas anyone? >> >> I tried tagging up `VariantN` with pure until I got to >> >> @property inout(T)* peek(T)() inout pure >> { >> static if (!is(T == void)) >> static assert(allowed!(T), "Cannot store a " ~ T.stringof >> ~ " in a " ~ VariantN.stringof); >> if (type != typeid(T)) >> return null; >> static if (T.sizeof <= size) >> return cast(inout T*)&store; >> else >> return *cast(inout T**)&store; >> } >> >> which then errors as >> >> variant.d(701,13): Error: pure function 'std.variant.VariantN!32LU.VariantN.peek!void.peek' cannot call impure function 'object.opEquals' >> >> for the line >> >> if (type != typeid(T)) >> >> Why is `object.opEquals` not pure? > > It's a long story, but it boils down to the simple fact that nobody's gotten around to it yet. I think the plan was to make it templated, but Jonathan Davis knows more about it than anyone. The plan is to remove it from Object and templatize the free function opEquals which calls opEquals on classes: https://issues.dlang.org/show_bug.cgi?id=9769 Last time I tried to templatize it, compiler bugs got in the way. I need to make another go at it and see what the current status is. But there's a lot of work that has to be done beyond that to actually be able remove the various virtual functions from Object. Regardless, VariantN couldn't have its opEquals explicitly marked with pure, because it's a template and needs to work with types that don't have a pure opEquals. But it _should_ be able to be inferred as pure if the types in question have pure opEquals. However, the situation with Object continues to haunt us. - Jonathan M Davis | |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Jonathan M Davis | On Friday, 18 September 2015 at 15:40:09 UTC, Jonathan M Davis wrote:
> Regardless, VariantN couldn't have its opEquals explicitly marked with pure, because it's a template and needs to work with types that don't have a pure opEquals. But it _should_ be able to be inferred as pure if the types in question have pure opEquals. However, the situation with Object continues to haunt us.
>
> - Jonathan M Davis
I'm currently only in need of a VariantN of value-types and string.
Therefore I don't understand why I should need Object.opEquals especially not in the case I gave above where Variant only contains a `long` and a `double`.
Is there an easy way to modify `VariantN` to not need `Object.opEquals` when `VariantN` contains only value types and strings?
| |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Nordlöw | On 9/18/15 2:05 PM, Nordlöw wrote:
> On Friday, 18 September 2015 at 15:40:09 UTC, Jonathan M Davis wrote:
>
>> Regardless, VariantN couldn't have its opEquals explicitly marked with
>> pure, because it's a template and needs to work with types that don't
>> have a pure opEquals. But it _should_ be able to be inferred as pure
>> if the types in question have pure opEquals. However, the situation
>> with Object continues to haunt us.
>
> I'm currently only in need of a VariantN of value-types and string.
>
> Therefore I don't understand why I should need Object.opEquals
> especially not in the case I gave above where Variant only contains a
> `long` and a `double`.
>
> Is there an easy way to modify `VariantN` to not need `Object.opEquals`
> when `VariantN` contains only value types and strings?
The issue is not the comparison of the values, it's the comparison of the TypeInfo, which is going to be Object.opEquals no matter what your actual types are.
-Steve
| |||
September 18, 2015 Re: Non-Purity of Algebraic opEquals | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Steven Schveighoffer | On 9/18/15 2:37 PM, Steven Schveighoffer wrote:
> The issue is not the comparison of the values, it's the comparison of
> the TypeInfo, which is going to be Object.opEquals no matter what your
> actual types are.
Actually, I should qualify this with the fact that I don't really know how VariantN works :) So I could also be wrong.
But your code snippet was comparing TypeInfos.
-Steve
| |||
Copyright © 1999-2021 by the D Language Foundation
Permalink
Reply