June 12, 2015 Issues » [Issue 14682] [REG2.037] Incorrect interpretation of ~ [] | |||
|---|---|---|---|
| |||
...element appending.
int[] a1;
int[][] a2;
int[][][] a3;
import std.stdio;
{ auto x = a1 ~ []; x... | |||
April 28, 2015 General » Re: D audio playing and analysis library? | |||
|---|---|---|---|
| |||
...input + a1 * x[0] + a2 * x[1] - a3 * y[0] - a4 * y[1]
// update state... | |||
February 07, 2015 Issues » [Issue 14131] va_copy is broken on posix X86_64 | |||
|---|---|---|---|
| |||
...auto a3 = va_arg!int(ap);
assert(a1 == 0x11111111);
assert(a2 == 0x22222222);
assert(a3 == 0x33333333... | |||
February 06, 2015 Issues » [Issue 14131] New: va_copy is broken on posix X86_64 | |||
|---|---|---|---|
| |||
...auto a3 = va_arg!int(ap);
assert(a1 == 0x11111111);
assert(a2 == 0x22222222);
assert(a3 == 0x33333333... | |||
January 28, 2015 Issues » [Issue 14073] New: Allow token strings to use other types of brackets as delimiters | |||
|---|---|---|---|
| |||
...This is also a token string]; string a3 = q<Angle brackets are also valid for... | |||
December 10, 2014 General » struct default constructor, unions and bizaro behavior. | |||
|---|---|---|---|
| |||
...t2;
}
T3 t3;
}
T1 a1;
T3 a3;
S(a1, a3);
This is erroring because t1... | |||
November 05, 2014 Issues » [Issue 13685] std.numeric.arrayShape | |||
|---|---|---|---|
| |||
...auto a3 = s1.allocate!double(5.0); // Initialized to 5.0. assert(a1.arrayShape == a3... | |||
October 09, 2014 Learn » dupping to allow vector operation? | |||
|---|---|---|---|
| |||
...a2 = a1[] * 3; // line 3, Error
int[] a3 = a1.dup[] *= 3; // line 4, OK?
int... | |||
October 09, 2014 Issues » [Issue 10282] Refused assignment of vector op result to const array | |||
|---|---|---|---|
| |||
...3, 6] * 3; // OK
const int[3] a3 = a1[] * 3; // Error
const int[3] a4... | |||
September 28, 2014 Issues » [Issue 13551] New: std.conv.to for std.typecons tuples too | |||
|---|---|---|---|
| |||
...Tuple;
auto data = ["10", "20", "30"];
auto a3 = data.to!(int[3]); // OK
auto t3... | |||
Copyright © 1999-2021 by the D Language Foundation