resolve

open fun resolve(first: String, vararg rest: String): String

resolve()

Resolves a sequence of paths or path segments into an absolute path.

This method variant accepts a string path and returns a string path.

Return

The resolved path as a string.

Parameters

first

The first path to resolve.

rest

The remaining paths to resolve.

See also


open fun resolve(first: Path, vararg rest: Path): String

resolve()

Resolves a sequence of paths or path segments into an absolute path.

This method variant accepts a Path object and returns a String.

Return

The resolved path as a string.

Parameters

first

The first path to resolve.

rest

The remaining paths to resolve.

See also


abstract fun resolve(first: Path, vararg rest: Path): String

resolve()

Resolves a sequence of paths or path segments into an absolute path.

This method variant accepts a NodePath object and returns a String.

Return

The resolved path as a string.

Parameters

first

The first path to resolve.

rest

The remaining paths to resolve.

See also


open fun resolve(iterable: Iterable<Path>): String

resolve()

Resolves a sequence of paths or path segments into an absolute path.

This method variant accepts an Iterable of NodePath objects and returns a String.

Return

The resolved path as a string.

Parameters

iterable

The iterable of paths to resolve.

See also


abstract fun resolve(sequence: Sequence<Path>): String

resolve()

Resolves a sequence of paths or path segments into an absolute path.

This method variant accepts a Sequence of NodePath objects and returns a String.

Return

The resolved path as a string.

Parameters

sequence

The iterable of paths to resolve.

See also