appendPath - multiple declarations

Function appendPath

Appends file path parts with proper delimiters e.g. appendPath("/home/user", ".myapp", "config") => "/home/user/.myapp/config"

string appendPath(
  scope string[] pathItems...
);

Function appendPath

Appends file path parts with proper delimiters (as well converts delimiters inside path to system) to buffer e.g. appendPath("/home/user", ".myapp", "config") => "/home/user/.myapp/config"

char[] appendPath(
  char[] buf,
  scope string[] pathItems...
);