Path::join()
Append component to this path.
component
public method join(this: Path, component: String): Path { let p = if this.p.ends_with("/") { this.p ^ component } else { (this.p ^ "/") ^ component } Path{ p: p } }