Search

May 28
General »
...r, r];

  import std.conv : text;
  auto str = arr.text;
  assert(!arr.empty);

  foreach(n...
May 28
Issues »
...assert(!arr.empty);

  import std.conv : text;
  auto str = arr.text; // "€₺₽"

  assert(!arr.empty);
}
```

--
May 28
General »
...r.empty);

  import std.conv : text;
  auto str = r.text; // "€₺₽"

  assert(r.empty);
}
```

Okay...
May 27
General »
...strings str;
    auto s = "123".dup;
    str = [s, s, s];

    str.writefln!form;
    str.writefln...
May 25
Issues »
...enum str = "a";
if(a && str.length > 1 && str[1] == 'a') {} // ok
if(b && str...
May 16
DIP Ideas »
...add another construct:
```d
immutable(char)[$+1] str = "Hello";
```
The `$+1` is core syntax. There...
April 26
General »
...safe {
    Context context;
    char[] str = context.acquire();
    char[] var = test(str);
    writeln(var); // Should be...
April 21
Issues »
...struct S
    {
        int i;
        int* ptr;
        string str;
    }

    static assert(is(typeof(S.tupleof) == AliasSeq...
1 2 3 4 5
Next ›   Last »