Methods

/ΒΆ

/(a:Str, b:Str)

Concatenate two path parts using STDLIB_PATH_SEP (currently "/") but should be platform-specific later.
Source: stdlib.ngs:2756

Returns

Str

Example

mydir="tmp"
mydir / "myfile"  # "tmp/myfile"

/(a:Str, b:Str)

Concatenate two path parts using STDLIB_PATH_SEP (currently "/") but should be platform-specific later.
Source: stdlib.ngs:2763

Returns

Str

Example

mydir="tmp/"
mydir / "myfile"  # "tmp/myfile"

/(a:Str, b:Str)

Concatenate two path parts using STDLIB_PATH_SEP (currently "/") but should be platform-specific later.
Source: stdlib.ngs:2772

Returns

Str

Example

mydir="./"
mydir / "myfile"  # "myfile"