Search

March 12, 2022
Issues »
...using a
template mixins and uses an alias for other overloads:
https://github.com/dlang...
March 12, 2022
Issues »
...alias BOTH sets together, not just one:

```
class B: A
{
    alias f = A.f;
    alias...
March 12, 2022
Issues »
...f(){ writeln("A.f"); }
}
class B: A
{
    alias f = A.f;
    mixin X!();
}
mixin template...
March 11, 2022
Issues »
...MoonlightSentinel created dlang/dmd pull request #13804 "alias parameters" fixing this issue:

- Fix 22871 - Support...
March 11, 2022
Issues »
...MoonlightSentinel created dlang/dmd pull request #13804 "alias parameters" fixing this issue:

- Fix 22868 - Let...
March 11, 2022
Issues »
...Removed                     |Added
----------------------------------------------------------------------------
            Summary|Aliases to                  |Using an alias to
                   |`__traits(parameters)`      |`__traits(parameters)`
                   |causes unknown...
March 11, 2022
Issues »
...g.

int makeAlias(int a, bool b)
{
    alias Params = __traits(parameters);
    assert(Params[0] == 3...
March 11, 2022
Learn »
...want to do, you either need to write the !() or use a different alias name.
March 11, 2022
Learn »
...T would have to be something like TImpl and then you do `alias T = TImpl!();`
March 11, 2022
Learn »
...to preserve the name (`t` != `T`) but `alias T = T!()` gives me `Error: declaration `T...
238 239 240 241 242 243 244 245 246 247 248
Next ›   Last »