replace.replace

Undocumented in source.
  1. enum replace;
  2. enum replace;
    template replace(string str, dchar from, dchar to)
    static if(!(str.length == 0))
    static if(str[0] == from)
    enum replace = to ~ replace!(str[1..$], from, to);
  3. enum replace;

Meta