We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a7c59 commit edab733Copy full SHA for edab733
std/numeric.d
@@ -3875,7 +3875,7 @@ public:
3875
{
3876
onOutOfMemoryError();
3877
}
3878
- this(pStorage[0..bufferSize]);
+ this(pStorage[0 .. bufferSize]);
3879
3880
3881
@@ -3912,7 +3912,7 @@ public:
3912
* The index of the `i`th lookup is `2^^i` and the length is also `2^^i`.
3913
*/
3914
3915
- memSpace[0..2] = float.nan;
+ memSpace[0 .. 2] = float.nan;
3916
3917
auto lastRow = memSpace[$ - size .. $];
3918
lastRow[0] = 0; // -sin(0) == 0.
0 commit comments