Search

April 13, 2023
Learn »
...0).byRef;
    }
}

void main()
{
    stats foo;
    auto x = foo["tacos"];
    x++;
    assert(foo["tacos"] == 1);
}
```
April 12, 2023
Learn »
...bar: 4}`;
    CustomStruct s = yamlString.deserializeYaml!CustomStruct;

    assert(s == S("str", 4));
}
```

If you want...
April 12, 2023
Learn »
...data)
    {
      return *ret;
    }
    return null;
  }

  assert(handler["D Lang"] == &foo);
  assert(handler["null"] is null...
April 12, 2023
Issues »
...Builder builder;
    Function func = () {
        return builder.perform();
    };
    assert(func() == 2);
}

struct Builder {
    static int perform...
April 12, 2023
Issues »
...s end that _setmode is expected to assert out if anything isn't right.

For...
April 12, 2023
Learn »
...new Handler!Bitmap;
  handler.set("D Lang", foo);

  assert(handler["D Lang"] == &foo);
}
```
SDB@79
April 10, 2023
Issues »
...need statement expressions extension for GLibC's assert() https://issues.dlang.org/show_bug.cgi...
April 10, 2023
Issues »
...need statement expressions extension for GLibC's
assert()

https://github.com/dlang/dmd/pull/15093

--
April 10, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=18002

RazvanN <razvan.nitu1305@gmail.com> changed...
April 10, 2023
General »
...d", 0, 0);
    if (!mod.read(loc))
        assert(0, "can't read");
}
-----

Linux:

-----
Linking dparser...
84 85 86 87 88 89 90 91 92 93 94 95
Next ›   Last »