Search

November 23
Learn »
...in D e.g.:

```d
ulong[2] div(ulong a, ulong b)
{
    return [a / b...
November 23
Learn »
...asm {
            xor RDX, RDX;
            mov RAX, a;
            div b;
            mov quot, RAX;
            mov rem, RDX...
November 15
DIP Ideas »
...short x = SHRT_MAX;
    short div = 1;
    short y = x / div + 1;

    printf("%d > %d...
November 12
Issues »
...short div = 1;
    short y = x / div + 1;
}
```

Expected behavior: Error that expression `x / div...
November 08
DIP Ideas »
...short x = short.max;
    short div = 1;
    short y = x / div + 1;
```
I thought the...
October 22
Issues »
...import std.algorithm.mutation;
string[] a = [ "a"
</div>

Note that <code class="lang-d"><span...
September 04
General »
...each construct can have its own grammar div. Actually types-docs feel a bit sub...
August 30
General »
...writeln ("<div>" ~ data ~ "</div>"); // 1.
     writeln (format!"<div>%s</div>" (data)); // 2.
     writeln (i"<div...
August 18
General »
...a bunch of maths functions like `add`/`div`/`mul`/etc. that operate on it—it’s a...
May 10
General »
...algorithm/mutation/remove.html

```
import std.algorithm.mutation;
string[] a = [ "a"
</div>
```

What happend here?
« First   ‹ Prev
1 2
Next ›   Last »