All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.makeevrserg.mobilex.di.Dependency.kt Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy