March 01, 2015 LDC » MSVC: fix for failing tests due to strtod+hexadecimal literals | |||
|---|---|---|---|
| |||
...math, std.stdio;
void main() {
writeln(PI);
}
outputs "0" (zero), simply because std.math.PI... | |||
February 28, 2015 Issues » [Issue 14230] New: [REG2.067b2] std.array.join misses the first element which is empty string | |||
|---|---|---|---|
| |||
...writeln(ary.join(" @"));
// In 2.067b2, this outputs "aa @bb @cc" or asserts inside of... | |||
February 27, 2015 General » Re: Contradictory justification for status quo | |||
|---|---|---|---|
| |||
...know to ensure everything is safe? The function has inputs and outputs, sources and destinations. | |||
February 26, 2015 Learn » Re: 3 dimension arrays | |||
|---|---|---|---|
| |||
...T[] _inputs; > T[][layersNum - 2] _hidden; > T[] _outputs; > T[] _target; > > //waights [col][row][dimension] > T... | |||
February 26, 2015 Learn » 3 dimension arrays | |||
|---|---|---|---|
| |||
...T[] _inputs; T[][layersNum - 2] _hidden; T[] _outputs; T[] _target; //waights [col][row][dimension] T... | |||
February 21, 2015 Learn » UFCS on template alias ? | |||
|---|---|---|---|
| |||
...poly = map;
list.poly!(a => a + a);
}
---
outputs:
"Error: no property 'poly' for type 'int[]'" | |||
February 16, 2015 Learn » what is the offical way to handle multiple list in map() ? | |||
|---|---|---|---|
| |||
...stringof, yougonna); writeln(youreallygonna.stringof, youreallygonna); --- which outputs: --- yougonna["eat apple", "eat banana", "eat orange... | |||
February 10, 2015 Issues » [Issue 14166] New: null dereference during CTFE | |||
|---|---|---|---|
| |||
...pragma (msg, Elem!T); } /* dmd git-HEAD outputs this: source/app.d(11): Error: dereference... | |||
February 09, 2015 General » Const-correctness and uniqueness. Again. | |||
|---|---|---|---|
| |||
...bbb", "ccc" ]); pragma(msg, typeof(s)); } ``` It outputs "string" which stands for immutable buffer. However... | |||
February 03, 2015 Learn » Re: Want to read a whole file as utf-8 | |||
|---|---|---|---|
| |||
...n", bytesRead, count);
fclose(f);
return 0;
}
Outputs for example this: read 838 bytes, 829... | |||
Copyright © 1999-2021 by the D Language Foundation