September 13 DIP Development » Re: First Draft: Member of Operator | |||
|---|---|---|---|
| |||
...supported for templates. Hmm, grammar changes look ok, and I do need it to Type... | |||
September 12 DIP Ideas » Re: Enumerated Unions (sum types) | |||
|---|---|---|---|
| |||
...said that accessing `__tag` is `@safe`. Ah, OK. I missed that. BTW, there is an... | |||
September 11 Learn » Re: Is it possible to use templates to implement something like the `@show` macro from the Julia programming langauge in D? | |||
|---|---|---|---|
| |||
...compatibility). Interpolation strings (added this year) are ok and pretty decent, and well tough in... | |||
September 10 Learn » Re: Can the send function send an array? | |||
|---|---|---|---|
| |||
OK, It works, thanks. // dlang tries to use the type system to make one be... | |||
September 07 General » Re: Discussion about deprecating @nogc and workarounds | |||
|---|---|---|---|
| |||
...but here are some ideas. I am OK with removing `@nogc` because it's annoying... | |||
September 06 DIP Ideas » Unpacking syntax | |||
|---|---|---|---|
| |||
...t(1, 2); // ok (auto a, auto b) = t(1, 2); // ok (a, auto b... | |||
September 04 DIP Ideas » Re: Escape Analysis & Owner Escape Analysis | |||
|---|---|---|---|
| |||
...field !is null) {
writeln(**field);
**field = 2; // ok, fully mutable
}
}
```
Okay, I can entirely ditch... | |||
September 03 DIP Ideas » Re: Escape Analysis & Owner Escape Analysis | |||
|---|---|---|---|
| |||
...here
// x escape set is empty, therefore ok
}
```
### Owner Escape Analysis
Seeing what variable contributes... | |||
September 02 General » pragma(inline) doesnt work on local functions : DMD | |||
|---|---|---|---|
| |||
...but inlines OK if you pass -inline to the compiler Also inlines OK if you... | |||
September 01 Issues » [Issue 24736] New: core.atomic is not work with struct that has template parameter list and function pointer (-preview=all) | |||
|---|---|---|---|
| |||
...auto a = new A;
a.fn(1); // OK
a.fn(2, "str"); // Runtime error when... | |||
Copyright © 1999-2021 by the D Language Foundation