absolutePath - multiple declarations

Function absolutePath

Like std.path.absolutePath, but operates on Path.

Path absolutePath (
  Path path,
  lazy string base = getcwd()
) pure @safe;

Path absolutePath (
  Path path,
  Path base
) pure @safe;

Alias absolutePath

Alias of same-named function from std.path

alias absolutePath ;