include

abstract fun Layer.include()

This function is used to include a Layer in the architecture without specifying any dependencies. It can be used in combination with dependsOnNothing() to specify that a layer does not depend on any other layer.

Receiver

LayerDependenciesCore The core dependencies container

Return

The LayerDependenciesCore instance for chaining


abstract fun Collection<Layer>.include()

Includes all layers from the collection in the architecture without specifying any dependencies. This can be used in combination with dependsOnNothing() to specify that multiple layers do not depend on any other layer.

Example usage:

val layers = setOf(domainLayer, dataLayer)
layers.include()

Receiver

The collection of Layers to be included in the architecture.