Search

March 03, 2023
Learn »
...arr);
    hopefullyRef.change();
    assert(hopefullyRef.i == 3);

    // The array is still 2
    assert(arr[0...
March 02, 2023
General »
...at all. People use different fonts to assert different meanings all the time.

> but there...
March 02, 2023
Learn »
...2, 3, 4, 5, 6, 7, 8, 9]
  assert(IntArr == len.iota.array);
}
```
SDB@79
March 02, 2023
Issues »
...until(" ");
    // This doesn't work, why?
    assert(result == "Hello");
    assert(result.array == "Hello");
}
```

When `until...
March 01, 2023
Issues »
...nogc`.
  `druntime/test/allocations/src/alloc_from_assert.d` then passes on
  Windows again (not...
March 01, 2023
Announce »
...functions such as malloc/free, exit(or assert) (those are the most  basic ones), for...
March 01, 2023
Learn »
...the first index also lies at null.
assert(&value[0] is null);
// So we try...
February 28, 2023
Issues »
...be equivalent to:
        foreach(idx; 0 .. cfoo.length)
                foo[idx] = cfoo[idx];
        assert(foo == cfoo);
}

--
February 28, 2023
Genel »
Sonunda bir çözüm buldum, üstelik `static assert`'den de kurtuldum. Çözümü [şurada](https://forum.dlang...
February 28, 2023
General »
...Moreover, I got rid of the `static assert`:

```d
struct S(Node)
{
  static if(is...
95 96 97 98 99 100 101 102 103 104 105 106
Next ›   Last »