commonMain.com.makeevrserg.mobilex.di.Dependency.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-locator Show documentation
Show all versions of service-locator Show documentation
KMM library with frequently used code
The newest version!
package com.makeevrserg.mobilex.di
import kotlin.reflect.KProperty
/**
* [Dependency] is a base interface for [Lateinit] or [Single]
*/
interface Dependency {
val value: T
}
inline operator fun Dependency.getValue(t: K?, property: KProperty<*>): T = value