Search

October 15
Learn »
...tab;
            int len;
        } prop_list;
        const char *str;
        int32_t i32;
        int64_t i64;
        double...
October 11
LDC »
...Flag useReplacementDchar = No.useReplacementDchar, S)(ref S str, out size_t numCodeUnits)`
/usr/lib/ldc...
October 11
Learn »
...if (is(typeof(arg) == InterpolatedLiteral!str, string str))
      str.write;
    else write...
October 02
Learn »
...d
template MyCon(T, string str = "0")
{
    MyCon convert = str;
    struct MyCon
  ...
October 01
Learn »
...d
template MyCon (T, string str = "0")
{
    MyCon init = str;

    struct MyCon
    {
        string input;
        T...
September 30
Learn »
...a

string str = "abc";
string ss = str.to!string; // same as ss = str;

char[] ca...
September 26
Learn »
...toHexString(R)(R str)
{
  string result;

  char a, b;
  foreach(char c; str)
  {
    a = c...
September 24
General »
...writeln; // 48
}

struct String
{
    immutable(char)[] str;
    size_t a, b, c, length...
September 22
Learn »
... enum str = r"\tHello\xfeD\r\nProgramming\0\nWorld!\b\f";

  auto u = str.unescaped...
September 09
Learn »
...import std.stdio;
auto str = readln(); // get the line
auto filtered = str.filter!(c => "_,".indexOf...
1 2 3
Next ›   Last »