Search

October 18
Issues »
...been

```
    void opAssign()(auto ref S rhs)
    {
        writefln("Assigning %s, count(%s) to %s, count...
October 18
Issues »
...copyConstructed;
        ++count.refCount;
        writefln("Copy Constructing: %s, count(%s)", i, count);
    }

    ~this()
    {
        writefln("Destroying: %s...
October 12
Learn »
...STEP2
struct//*/
Foo {
  this(int i) {
    i.writefln!"Object %s is created...";
  }
  ~this() {
  writeln("Object...
October 10
DIP Ideas »
...variant;
void main()
{
    T u; R v;
    writefln("%d : %d", u.sizeof,
          (true ? u : v...
October 03
Learn »
...SUCCESS)
    {
        pam_strerror(pamh, retval).to!string.writefln!"pam_start: %s";
        return 1;
    }

    retval = pam...
October 03
Learn »
...toStringz, &conv, &pamh);
    if (retval != PAM_SUCCESS) {
        writefln("pam_start: %s", pam_strerror(pamh, retval...
September 23
General »
...auto ref Args args) {
    import std: forward, writefln;
    import std.datetime.stopwatch: StopWatch, AutoStart;
    auto...
September 18
General »
...captures[1];
    string value = matches.captures[2];
    writefln("\"%s\": %s", key, value);
    Item[key] = value...
September 11
Learn »
...assert(echo2("T $i, b, ${i-2}") == "writefln(\"T \", i, \", b, \", (i-2));\n");
```

It...
September 09
Learn »
...can use separators using writefln:

```d
writefln("%,d", 123987); // 123,987
writefln("%,?d", '_', 123987); // 123...
1 2 3
Next ›   Last »