Search

August 09, 2021
Issues »
...d481db2c121828af6f3f32c91bd1d8f63d91d791 by Geod24:
  Fix 22178: fpclassify is pure on Musl too

https://github.com/dlang...
August 09, 2021
General »
...point of view, unsigned arithmetic is the pure, simple version, and signed arithmetic is the...
August 09, 2021
Issues »
...return 5;
    }
    alias internal this;
};

void main() pure
{
    const c = new C;
    auto r = cast...
August 08, 2021
Learn »
...i;

    this(scope ref typeof(this) rhs)pure nothrow @safe @nogc{
    	//this.i = rhs.i...
August 08, 2021
Issues »
...S s;
    s.p = p;
    return s;
}

// pure nothrow @nogc @safe S(int* p)
pragma...
August 08, 2021
Issues »
...void()
    pragma(msg, typeof(S!().initialize));
else
    // pure nothrow @nogc @safe void()
    pragma(msg, typeof...
August 08, 2021
Issues »
...emit:
"r1.initialize:pure nothrow @nogc @safe void(int* i)
S!().initialize:pure nothrow @nogc...
August 08, 2021
General »
...we need this if we moving to pure Meson?
pkgc.generate(...)
```

Perhaps I do not...
August 06, 2021
Issues »
https://issues.dlang.org/show_bug.cgi?id=22186

johanengelen@weka.io changed:

           What    |Removed...
August 06, 2021
Issues »
...pure"(dg);
        return 1;
    }
}
else
{
    auto foo() {
        int delegate() dg = delegate() { return 1; };

        as!"pure...
111 112 113 114 115 116 117 118 119 120 121
Next ›   Last »