Search

May 07, 2023
Issues »
...internal pointer unless `opPostMove` is
defined.
----------------
??:? _d_assert_msg [0x55972b30555c]
??:? pure nothrow @nogc @safe void...
May 06, 2023
General »
... assert(num > 0);
  } else {
    //assert(num == 0);
  }
```

I would like these...
May 05, 2023
General »
...if (auto res = IndexOfResult(arr.indexOf(chr)))
        {
            assert(arr[res] == chr);
            res.writefln!"[ --> %s ]";
        }
        else...
May 05, 2023
Issues »
...Func function() pure nothrow @nogc @safe;
    static assert(is(typeof(&f) == F));
}
ref int h4...
May 05, 2023
General »
...res = arr.indexOf(chr).toBool)
  {
    arr.writeln;
    assert(arr[res] == chr);
    ' '.repeat(res).writeln("^--found...
May 05, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=18297

RazvanN <razvan.nitu1305@gmail.com> changed...
May 05, 2023
Issues »
...i + b.i)(NC(2), NC(3));
    assert(f() == 5);
}
//////////////////////////////////////////////////////////////

Command: dmd -o- -unittest -wi...
May 05, 2023
General »
...if (auto res = arr.indexOf(chr).toBool())
      {
            assert(res == 1);
      }
}
```

`opCast` is used for the...
May 05, 2023
General »
...dup;
  if(auto res = arr.rectifiedIndexOf(chr))
  {
    assert(arr[res - 1] == chr);
    res.writefln!"[ --> %s...
May 03, 2023
Genel »
...Salih Dincer wrote:

>      auto test1 = table["ID10"];
>      assert(test1 is null);

Yani, 'null' geçerli bir...
80 81 82 83 84 85 86 87 88 89 90 91
Next ›   Last »