Search

August 04, 2022
General »
...static foreach (mem; __traits(allMembers, E))
            mixin("alias "~mem~" = Impl!(1 << E."~mem~");");
    }

    enum F...
August 03, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23281

--- Comment #1 from johanengelen@weka.io...
August 03, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=22720

--- Comment #2 from johanengelen@weka.io...
August 03, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=22720

johanengelen@weka.io changed:

           What    |Removed...
August 03, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23281

johanengelen@weka.io changed:

           What    |Removed...
August 03, 2022
Issues »
...old(long a) {}
    alias foo(I: int) = foo_old;
}

void templ(alias IMPL)() {
    pragma(msg...
August 03, 2022
Learn »
...std.functional;


    template foo(alias predicate)
    if (is(typeof(unaryFun!predicate)))
    {
        alias notfunny=unaryFun!predicate...
August 03, 2022
Issues »
...W == immutable bool)) //Change 'T' to 'W'
{
    alias T = Unshared!W; //Fix https://issues.dlang...
August 03, 2022
Learn »
...s only two lines:

```d
alias Unshared(T) = T;
alias Unshared(T: shared U, U...
August 02, 2022
Learn »
...filter!((a) { return a > 0; })` or

```d
alias criteria = (a) { return a > 0; };
auto r...
200 201 202 203 204 205 206 207 208 209 210
Next ›   Last »