Search

September 28
Learn »
...e);
        }
        return 0;
    }
}
import std.stdio;
void main()
{
    auto foo = Foo!Sarma( [2, 4...
September 26
Learn »
...16))
     .copy(hex[]);
}

import std.stdio;
void main()
{
  enum hex = "48656C6C6F2044202620576F726C6421";
  enum size = hex.length...
September 24
General »
...and uint on 32-bit systems. The main problem with it not being a size...
September 25
DIP Development »
...type on the outer function."

```d
void main() {
	InstantiableCoroutine!(int, int, int) var = &myCo;
}

int...
September 24
General »
...T.sizeof * 8;
}

import std.stdio;

void main()
{
    ByteSize!iColor.writeln(" == ",
      ...
September 23
Learn »
...following program:

    \<code>
        import std.stdio;

        int main(string[] args) {
            uint Q = 7681;
            writeln("Val...
September 23
Issues »
...static @property bool isValid() { assert(0); }
}

void main()
{
        Foo foo;
        imported!"std.stdio".writeln(foo...
September 23
DIP Ideas »
...y) {
        super(x);
        this.y = y;
    }
}

void main() {
    B b1 = B(1, 2), b2 = B...
September 23
Issues »
...A
{
    int [] arr;
    alias arr this;
}

void main()
{
    A a = new A;
    a ~= 1;
    writeln...
September 23
General »
...and the DMD Codebase:**
  One of the main challenges I faced this week was getting...
18 19 20 21 22 23 24 25 26 27 28 29
Next ›   Last »