Search

October 17
General »
...t;
    int x;
    // (no move constructor)
}

void main(){
    S s0;
    S s1=move(s0); // must...
October 17
General »
...is fixed, but it should not be the main motivation for special move constructor syntax.
October 16
General »
...S s = S(j++);
         return s;
    }
}

void main() {
	S a, b, c;
	a = S(1...
October 16
General »
...this.i = c;
    }

    alias i this;
}

void main() {
    S s1, s2, s3;
    int i = 1...
October 16
Announce »
...based on Project Nayuki's library.

The main idea behind it was to create something...
October 16
Issues »
...8
#define SDL_MAIN_USE_CALLBACKS 1 /* use the callbacks instead of main$
#include <SDL3...
October 15
General »
...count; }
}

int count;
enum value = 42;

void main()
{
  auto s1 = S(value);
  auto s2 = S...
October 15
General »
...this (int i) { }
	this (S s) { }
}

void main() {
	S s1, s2;
	s1 = S(1);
	s2...
October 15
Issues »
...math;
    return core.math.sqrt(x);
}

void main()
{
    double q = -1.0;
    double r = q...
October 15
Issues »
...different result for the following code:

```
void main()
{
    double[4] y;
    cubic_roots(-3.016658e...
10 11 12 13 14 15 16 17 18 19 20 21
Next ›   Last »