Function GenericPath.opBinary
Concatenates two paths.
GenericPath opBinary(string op : "~")
(
string subpath
) const;
GenericPath opBinary(string op : "~")
(
GenericPath . Segment subpath
) const;
{null} opBinary(string op : "~", F)();
GenericPath opBinary(string op : "~")
(
GenericPath subpath
) const nothrow;
GenericPath opBinary(string op : "~", F)
(
GenericPath!F subpath
) const
if (!is(F == Format));
GenericPath opBinary(string op : "~", R)
(
R entries
) const nothrow
if (isInputRange!R && is(ElementType!R : Segment));
The right hand side must represent a relative path.