Search

January 22, 2022
Learn »
...copy without forwarding:

```d
import std.typecons : Tuple;
import std.meta : allSatisfy;

enum bool isRcPtr...
January 22, 2022
Learn »
I want implement something like this:

```d
import std.stdio : writeln;
import std.meta : AliasSeq...
January 22, 2022
Learn »
...vit wrote:

> Why local variable of type tuple call destructors immediately after
> initialization?

I don...
January 22, 2022
Learn »
Thanks,
Why local variable of type tuple call destructors immediately after initialization?

```d
import std...
January 22, 2022
Learn »
...variables will be a copy of the tuple. forward only actually works if sent *directly...
January 22, 2022
Learn »
Hello,

Why is tuple variable `params` immediately destructed after its construction?
Why is `check(-2...
January 22, 2022
Learn »
It just worked, so i didn't think about it too much.. but it seems...
January 22, 2022
Learn »
so I why watching this video by Andrei:

https://www.youtube.com/watch?v=mCrVYYlFTrA...
January 21, 2022
Learn »
oof! use enums for compile-time strings ;)

```d
enum iotaValues = "iota(...";
```

Not sure I agree...
January 21, 2022
Learn »
I really like how alias and mixin can simplify my code even further:

//---

int[][int...
47 48 49 50 51 52 53 54 55 56 57 58
Next ›   Last »