January 06, 2023 Issues » [Issue 23603] New: ICE out of memory when using -lowmem | |||
|---|---|---|---|
| |||
...Microsoft D_InlineAsm D_InlineAsm_X86 X86 assert D_PreConditions D_PostConditions D_Invariants D... | |||
January 06, 2023 Announce » Re: Builder: Tiny Utility Library to Add a Builder API to Classes | |||
|---|---|---|---|
| |||
...c(4)
.build();
assert(b2.a == 3);
assert(b2.b == "ham");
assert(b2.c == 4);
}
``` | |||
January 06, 2023 Announce » Good News: Almost all druntime supported on arsd webassembly | |||
|---|---|---|---|
| |||
...c.test(); assert(cast(D)c is null); Tester[] t = new Tester[10]; assert(t... | |||
January 05, 2023 General » Re: Fixing C's Biggest Mistake | |||
|---|---|---|---|
| |||
...array. int[] myStaticArray = [0, 1].staticArray; static assert(is(typeof(myStaticArray) == int[2])); Is there... | |||
January 05, 2023 Issues » [Issue 23600] [std.format.read] formattedRead static asserts with Tuple and compile time format string | |||
|---|---|---|---|
| |||
...typecons.Tuple itself leading to a static assert. This change now adds support for this... | |||
January 05, 2023 Learn » Error "Outer Function Context is Needed" when class declared in unittest | |||
|---|---|---|---|
| |||
...a(1)
.b("ham")
.build();
assert(ab.a == 1);
assert(ab.b == "ham");
}
```
This fails... | |||
January 04, 2023 Issues » [Issue 23600] [std.format.read] formattedRead static asserts with Tuple and compile time format string | |||
|---|---|---|---|
| |||
...typecons.Tuple itself leading to a static assert. This change now adds support for this... | |||
January 04, 2023 Issues » [Issue 23598] New: Another nasty forward reference bug | |||
|---|---|---|---|
| |||
...SortedItems);
enum l = SortedItems.length; // (3)
static assert(is(typeof(SortedItems.length) == size_t)); // (4... | |||
January 04, 2023 Learn » Why does this code only work with `T` and not `typeof(T)`? | |||
|---|---|---|---|
| |||
...draw(T)(sfRenderWindow* renderWindow, T obj) {
static assert(isDrawable!T, format("Cannot call any draw... | |||
January 03, 2023 Learn » Re: How should I return multiple const values from a function? | |||
|---|---|---|---|
| |||
...auto res = Fun!(string, uint)(k, v);
assert(
is(typeof(res[0]) == const(string)) &&
is... | |||
Copyright © 1999-2021 by the D Language Foundation