Search

October 05, 2020
Issues »
...303      extern (D) inout(T)[] opSlice() inout nothrow pure @nogc
   304      {
-> 305          return data[0...
October 01, 2020
General »
...const pure nothrow:

	immutable(MyTypeInfo) returnType();
	immutable(MyTypeInfo)[] paramsTypes();
}

interface MyTypeInfoClass {
	const pure nothrow:

	immutable...
September 30, 2020
Issues »
...nothrow @nogc @safe to void delegate(string)
pure @safe
--------

Surely `void delegate(string) pure nothrow...
September 29, 2020
Learn »
...dependency):

	bool isWide(dchar ch) @safe pure nothrow @nogc
	{
	    if (ch < 63744)
	    {
		if (ch < 12880...
September 24, 2020
Announce »
...types (`This`).
  - Works with `pure`, `@safe`, `@nogc`, `nothrow`, and `immutable` (★)
  - Compatible with `-betterC` and...
September 22, 2020
General »
...for that:

ulong countEmptyLines(string rawText) @nogc nothrow pure @safe
{
    ulong empties;
    lineLoop: foreach (line...
September 20, 2020
General »
...parsing type 'const(void function()* function() pure nothrow @property @nogc)': Missing ')' for 'const('
Function object...
September 19, 2020
General »
...parsing type 'const(void function()* function() pure nothrow @property @nogc)': Missing ')' for 'const('". Is it...
September 16, 2020
Issues »
...VariantN!(4u, A, B), function (B _) pure nothrow @nogc @safe => 42, (a) => a.n)
code...
September 11, 2020
Learn »
...fun);
}

void fun(HTTPServerRequest req, HTTPServerResponse res) nothrow
{
try
{
res.headers["Content-Disposition"] = "filename=\"muj...
111 112 113 114 115 116 117 118 119 120 121
Next ›   Last »