moltendorf
05/18/2017, 8:55 PMumar
05/19/2017, 12:44 AMval x: Int by delegate
compiles to something like this private val $delegate = delegate
val x: Int get() = $delegate.getValue(this, this::x)
https://kotlinlang.org/docs/reference/delegated-properties.html
There is class delegation too https://kotlinlang.org/docs/reference/delegation.htmlmoltendorf
05/20/2017, 3:10 AMumar
05/21/2017, 1:35 AM