October 13 Issues » [Issue 24810] New: stable sort does not work with structs that both define opAssign and disable default-initialization | |||
|---|---|---|---|
| |||
...that this code no longer compiles:
void main()
{
static struct E
{
int value;
int valid... | |||
October 13 Issues » [Issue 24809] New: In some cases, stable sort assigns to unininitialized elements | |||
|---|---|---|---|
| |||
...that I came up with is
---
void main()
{
static struct E
{
int value;
int valid... | |||
October 13 General » Re: Move Constructors - Converting Lvalues to Rvalues | |||
|---|---|---|---|
| |||
...writeln("copied"); }
}
void foo(S s){}
void main(){
S s=2; // ok, actually does `S... | |||
October 12 Learn » Scope & Structs | |||
|---|---|---|---|
| |||
...Object was deleted!");
}
}
import std.stdio;
void main() {
write("call ");
writeln("return ", loop);
}
auto loop... | |||
October 12 Genel » Re: D'de diziler hem kolay hem zor | |||
|---|---|---|---|
| |||
...oluyor neler :)
```d
import std.stdio;
void main()
{
int[64] dizi = [ 15: 2, 31: 4... | |||
October 12 Learn » Re: Splitting a project into different executable files | |||
|---|---|---|---|
| |||
...in the future it might to have main executable and dedicated server, this should be... | |||
October 12 General » Re: One of the thing I like in D | |||
|---|---|---|---|
| |||
...pointers, it is equivalent to:
```d
void main() {
auto a = 0;
auto b = 0;
const... | |||
October 11 Learn » Re: Splitting a project into different executable files | |||
|---|---|---|---|
| |||
...that act like main for each program which aren't actually called main but instead... | |||
October 12 Learn » Splitting a project into different executable files | |||
|---|---|---|---|
| |||
...a project that will consist of several main files. I want to write several simple... | |||
October 11 General » Re: One of the thing I like in D | |||
|---|---|---|---|
| |||
...use ref variables aswell as
```d
void main() {
auto a = 0;
auto b = 0;
const... | |||
Copyright © 1999-2021 by the D Language Foundation