VariablePropertyDelegate

Simple interface encapsulating the implicit Kotlin contract for mutable property delegates.

Functions

Link copied to clipboard
abstract operator fun getValue(thisRef: Any?, property: KProperty<*>): T

Invoked as part of Kotlin delegated properties construct.

Link copied to clipboard
abstract operator fun setValue(thisRef: Any?, property: KProperty<*>, value: T)

Invoked as part of Kotlin delegated properties construct.