Search

February 06, 2023
Learn »
...Microsoft D_InlineAsm D_InlineAsm_X86 X86 assert D_PreConditions D_PostConditions D_Invariants D...
February 05, 2023
Genel »
...auto b = a;
    a.dizi[0] = 43;
    assert(b.dizi[0] == 43);   // Aynı diziyi paylaşıyorlar...
February 04, 2023
Issues »
...T P) {
  //assert(P == 43, format("T: %s", T.stringof));/*
  static assert(is(T...
February 04, 2023
General »
...assert(func(b - 1));
  return 0;
}

void main()
{
  enum Eco { False, True }

  Eco eco;
  assert...
February 03, 2023
General »
...doStuffWith(expr);
}
else
{
    // print error message
    static assert(0, compResult.message);
}
```

Getting constraints to understand...
February 03, 2023
General »
...algorithm.all was changed to use static assert instead:

https://issues.dlang.org/show_bug...
February 03, 2023
Announce »
...on all Transactions having been destroyed
    ~this()
    {
        assert(Transaction.count == 0);
    }
}

struct Transaction
{
    static int...
February 02, 2023
Announce »
...is for assert and static assert, but the PR
> only handles static assert.

I've...
February 02, 2023
Announce »
...is for assert and static assert, but the PR only handles static assert. You might...
February 02, 2023
Announce »
...support for multiple message arguments in `static assert()`, stack allocated `scope` array literals, a new...
103 104 105 106 107 108 109 110 111 112 113
Next ›   Last »