graphmine-util / io.github.sof3.graphmine.util / DelegateProvider
interface DelegateProvider<in R, out T>
An interface to help completing the provideDelegate operator function for val property delegation.
| provideDelegate | abstract operator fun provideDelegate(thisRef: R, property: KProperty<*>): ReadOnlyProperty<R, T>Provide the ReadOnlyProperty for delegation. Could use Ref if no special logic is required. |