Hello,
shouldn't most `std.conv` methods be declared pure ?
Cordially,
Julian.
Comment #1 by andrei — 2009-08-28T08:34:52Z
They should, but many are not automatically checkable. For example, the array-to-array conversion writes to a local temporary and then returns it. Technically that is pure, but the compiler cannot prove that as of this time. I will close this for now.