AbstractPathBuilder
An abstract base class for creating a scope resolution Path using a DSL. It provides a fluent API for building a path to a nested scope.
Example Usage:
subScope { find of scope<ViewModelScope>() of scope<ActivityScope>() of Root }Content copied to clipboard
Parameters
T
The concrete type of the path builder, used for fluent method chaining.
Inheritors
Properties
Functions
Link copied to clipboard
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.
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.