vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

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.

Authors

Sönke Ludwig

Copyright

© 2012-2021 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.