Search

December 13, 2021
Issues »
...string v) {
    unittest {
        writeln(v);
    }
}

void main() {
    alias x = canon!"abc";
}

The unittest works properly...
December 13, 2021
Learn »
...template foo2(T) if (!isUnqual!T == T)
{
   alias foo2 = .foo2!(Unqual!T);
}
```

It would be...
December 12, 2021
Learn »
...import std.traits : CopyConstness;

struct UniquePtr(T){
    alias Type = T;

    this(Rhs, this This)(scope...
December 12, 2021
Issues »
...X) blocks while X has a deprecated alias this target

https://github.com/dlang/dmd...
December 12, 2021
Learn »
...root;
import std.typetuple;
static import notes;
alias allModules = TypeTuple!(notes);

						import std.stdio;
						import...
December 11, 2021
Duyuru »
...41, 28,9),
    Points(41, 28,9)
  ];

  alias Nokta = PlanA;
  Nokta gidelim = new Nokta(BuluşmaNoktaları...
December 10, 2021
General »
...new hook called `_d_delstructTrace` as an alias to the already implemented `_d_delstruct` [here...
December 09, 2021
General »
...opt for a really tiny name like `alias T = std.conv.text; string s = T...
December 09, 2021
General »
...threabout, usable without Phobos. Phobos could public alias if need be, but certainly not the...
December 09, 2021
General »
this should have been:

```d
tuple"hello $name"
// or
alias I = tuple;
I"hello $name"
```
262 263 264 265 266 267 268 269 270 271 272
Next ›   Last »