Search

March 08, 2021
Issues »
...assert(is (typeof(f(f1)) == float));
    static assert...enum f1 = float.max;
    pragma(msg, f(f1...
February 19, 2021
Learn »
...new int[4][4];
    pragma(msg, typeof(a...of arrays for you:

    assert(e[0].length...
February 04, 2021
Learn »
...trusted ulong()` according to pragma(msg, typeof(Object...pure @safe nothrow @nogc
    {
        assert(0, "Not implemented...
February 01, 2021
Learn »
...static assert (a.sizeof == C.sizeof);

  pragma(msg, "Size of the reference: ", a.sizeof);
  pragma...
January 31, 2021
Issues »
...void main()
{
    auto c = 0;
    assert(isClose(c, exp(1)));
}

pragma(inline, true)
real exp...
January 12, 2021
General »
...T* obj){ self = obj; }
    pragma(inline,true) void...obj.as_StackConcept();
    static assert (is_StackConcept!(typeof...
January 08, 2021
General »
...a1 = "cerise".staticCharArray;
    static assert(is(typeof(a1...2].staticArray, [3, 4]];
    pragma(msg, typeof(a4...
November 21, 2020
General »
...pragma(msg, typeof(fun).stringof); // int(int x)
alias funType = int(int x);
static assert...
October 29, 2020
Issues »
...pragma(inline, false);
    }
}

void main()
{
    C c;
    auto d = c;
    assert(d.sOld.s);
    assert...
October 25, 2020
Learn »
...is (ReturnType!Func == int)) {
    pragma(msg, format!"\n...file, line, functionName));
    static assert(false);
  }

  void printError...
6 7 8 9 10 11 12 13 14 15 16 17
Next ›   Last »