Search

January 06, 2023
Issues »
...Microsoft D_InlineAsm D_InlineAsm_X86 X86 assert
D_PreConditions D_PostConditions D_Invariants D...
January 06, 2023
Announce »
...c(4)
      .build();

  assert(b2.a == 3);
  assert(b2.b == "ham");
  assert(b2.c == 4);
}
```
January 06, 2023
Announce »
...c.test();
	assert(cast(D)c is null);
	Tester[] t = new Tester[10];
	assert(t...
January 05, 2023
General »
...array.

int[] myStaticArray = [0, 1].staticArray;
static assert(is(typeof(myStaticArray) == int[2]));


Is there...
January 05, 2023
Issues »
...typecons.Tuple itself leading to a static assert.

  This change now adds support for this...
January 05, 2023
Learn »
...a(1)
      .b("ham")
      .build();
  assert(ab.a == 1);
  assert(ab.b == "ham");
}
```

This fails...
January 04, 2023
Issues »
...typecons.Tuple itself leading to a static assert.

  This change now adds support for this...
January 04, 2023
Issues »
...SortedItems);
    enum l = SortedItems.length; // (3)
    static assert(is(typeof(SortedItems.length) == size_t)); // (4...
January 04, 2023
Learn »
...draw(T)(sfRenderWindow* renderWindow, T obj) {
    static assert(isDrawable!T, format("Cannot call any draw...
January 03, 2023
Learn »
...auto res = Fun!(string, uint)(k, v);

  assert(
    is(typeof(res[0]) == const(string)) &&
    is...
112 113 114 115 116 117 118 119 120 121 122
Next ›   Last »