Search

July 17, 2019
General »
...Learned that I need `pragma(inline, false);` for...solved this by `if
(...) assert(0);`, with a...
July 15, 2019
Announce »
...pragma(msg, member!(S, "f0").exists); // true
    pragma...static assert(d.length == 3);

        static assert(d...
June 26, 2019
Issues »
...static assert(anySatisfy!(isSame!main, allMembers!module_));
    static assert(anySatisfy!(isSame!std, allMembers!module_));
    pragma...
June 23, 2019
Issues »
...Summary: compile time logic (pragma, static if) in...2).fun1!(3, 4);
    assert(s1.args.length...
June 14, 2019
General »
...transitive, so therefore the pragma should print
`shared...can implement machinery
to assert a valid calling...
June 11, 2019
Learn »
...bool same(T1, T2)(){
    pragma(msg, "same? "~T1...onBool = a;

      else static assert(false, "Unsupported type...
June 04, 2019
Issues »
...5);

    function()
    {
        // clean stack
        pragma(inline, false);
        long[0x500] a = 0;
    }();

    assert(i.get() == 5...
May 29, 2019
General »
...in { assert(dst.length >= src.length, "copyFrom source length larger than destination"); } do
{
    pragma(inline...
May 26, 2019
LDC »
...byte[16]);

version (Manual)
{
    pragma(inline, true)
    byte16...expected = b;
    expected[0] = 0;
    assert(actual == expected);
}
May 23, 2019
General »
...to!string ~ "]";
           }

        }
        return printfCall ~ ")";
    }();
    //pragma(msg, call); // uncomment...r ~= "%%";
	    i += 2;
	    continue;
	}
	assert(ai < A.length...
15 16 17 18 19 20 21 22 23 24 25 26
Next ›   Last »