Search

March 01, 2022
Issues »
...expression ignores implicit conversion of struct via alias this when pattern matching" was merged into...
March 01, 2022
Issues »
...expression ignores implicit conversion of struct via alias this when pattern matching" fixing this issue...
March 01, 2022
Learn »
...void doThing(string a, size_t b) {
    }

    alias doThing = typeof(super).doThing;	//add super.doThing...
March 01, 2022
Learn »
...I exclusively used anonymous enums with an alias to the base type like Guillaume noted...
February 28, 2022
Learn »
...expandEnum;
    foreach(m;__traits(allMembers, EnumType)) {
        expandEnum ~= "alias " ~ m ~ " = " ~ fqnEnumType ~ "." ~ m ~ ";";
    }
    return expandEnum;
}();
```

Then you...
February 27, 2022
Issues »
...that implicitly converts to a SumType via alias this.

https://github.com/dlang/phobos/pull...
February 27, 2022
Issues »
...that implicitly converts to a SumType via alias this.

https://github.com/dlang/phobos/pull...
February 26, 2022
Learn »
...single found");
        alias ElementType = T;
        alias done = bool;
      }
    }
  }
  static if (!is(done)) {
    alias ElementType = void...
February 26, 2022
Learn »
...std.traits : getSymbolsByUDA;

    Request reqAttr = RequestAttr!ReqT;

    alias paramSymbols = getSymbolsByUDA!(ReqT, Param);
    // return format(reqAttr...
February 25, 2022
Issues »
...cgi?id=22824

          Issue ID: 22824
           Summary: alias template parameter bound to wrong symbol (Error...
240 241 242 243 244 245 246 247 248 249 250
Next ›   Last »