Search

November 13, 2020
Issues »
...nothrow` on `toHash` you get:

source/value.d(481,13): Error: _aaApply2 is not nothrow...
November 13, 2020
Issues »
...foo1: onlineapp.ChunkByImpl!(function (char a) pure nothrow @nogc @safe =>
cast(int)a == 95).ChunkByImpl...
November 10, 2020
Learn »
The compiler infers pure, @nogc, nothrow etc. for template functions automatically. It's actually better...
November 10, 2020
Learn »
...should conditionally add things like pure, nogc, nothrow... I assume I would have to test...
November 09, 2020
General »
...arg like so:

module core.math;

public:
@nogc:
pure:
nothrow:
@safe:

real sin(real x);
November 09, 2020
General »
...If you throw an Error inside a nothrow function, it will properly run destructors, and...
November 09, 2020
Issues »
...Indeed, and this applies to most attributes (`nothrow` excepted). Marking as
duplicate.

*** This issue has...
November 09, 2020
Issues »
...applies to all attributes but `nothrow`, but only because `nothrow` is the
very last to...
November 08, 2020
General »
...in nothrow functions, even if a Throwable ends up going through that function..


[...]

Nothrow functions...
November 08, 2020
General »
This is a bit old but anyway.

When you call functions which potentially throw, the...
107 108 109 110 111 112 113 114 115 116 117
Next ›   Last »