absolute

Undocumented in source. Be warned that the author may not have intended to support it.
absolute
(
PathType
)
(
auto ref in PathType p
,
lazy PathType parent = cwd().asNormalizedPath!PathType()
)

Examples

TODO

assertEqual(WindowsPath("bar/baz.exe").absolute(WindowsPath("C:/foo")), WindowsPath("C:/foo/bar/baz.exe"));
assertEqual(WindowsPath("C:/foo/bar.exe").absolute(WindowsPath("C:/baz")), WindowsPath("C:/foo/bar.exe"));

Meta