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

commonMain.utils.ResettableDelegate.kt Maven / Gradle / Ivy

There is a newer version: 0.4.5-alpha6
Show newest version
package org.openrndr.utils

import kotlin.reflect.KProperty

fun  resettableLazy(initializer: () -> T) = ResettableDelegate(initializer)

expect class ResettableDelegate(initializer: () -> T) {
    operator fun getValue(thisRef: Any?, property: KProperty<*>): T
    fun reset()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy