Search

May 23, 2022
Learn »
...for strings in d. string is an alias for immutable(char)[]. So, you can do...
May 21, 2022
Issues »
...is inconsistent between declaration and call site
- alias this (it uses lookup rules different from...
May 20, 2022
Issues »
...14149 "Fix Issue 23082 - stringof of template alias overloaded with function accessed by trait: segfault...
May 20, 2022
Issues »
...14149 "Fix Issue 23082 - stringof of template alias overloaded with function accessed by trait: segfault...
May 18, 2022
Learn »
...width %s and height %s."(width,height));
    }
}

alias Shape = SumType!(Circle,Rectangle);


void main() {
  Shape...
May 17, 2022
Issues »
...main()
{
    assert(crash.front == 10);
}

struct Map(alias f)
{
    int front() { return f(); }
}

auto foo...
May 17, 2022
Issues »
...assert(crash.front.front == 10);
}

struct Map(alias f)
{
    int[] range;
    auto front() { return f...
May 16, 2022
Issues »
...scope Dg dg)
{
    enum attrs = functionAttributes!Dg;
    alias nonRefDg = SetFunctionAttributes!(int delegate(ubyte),
functionLinkage!Dg...
May 16, 2022
Issues »
...ice.d
module ice;
import imports.icecommon;

alias AliasSeq(T) = T;

struct Struct(T)
{
    AliasSeq...
May 16, 2022
Issues »
...the test modified a
bit:
```
 struct Forward(alias F)
 {
    auto call()()
    {
        return F();
    }
}

auto bar...
217 218 219 220 221 222 223 224 225 226 227
Next ›   Last »