Path.opOpAssign - multiple declarations

Function Path.opOpAssign

Appends a path to this one, with a directory separator in between.

Path opOpAssign(string op) (
  Path rhs
)
if (op == "~");

Path opOpAssign(string op) (
  string rhs
)
if (op == "~");

Function Path.opOpAssign

Appends an extension to this path. Naturally, a directory separator is NOT inserted in between.

Path opOpAssign(string op) (
  Ext rhs
)
if (op == "~");