of

infix fun of(qualifier: Qualifier): T

Appends a Qualifier to the current path, representing a step down into a child scope. The of is used as an infix operator to create a natural, readable DSL.

Return

The concrete builder instance T for further chaining.

Parameters

qualifier

The Qualifier of the child scope to navigate to.


infix fun of(root: Root): Path

Finalizes the path construction, returning the completed Path object. This should be the last call in the DSL chain, terminating at the Root of the scope hierarchy.

Return

The fully constructed Path.

Parameters

root

The Root object, acting as a terminal symbol for the path.