kotlin.reflect.KProperty1
KProperty1
interface KProperty1<T, out R> : KProperty<R>, (T) -> R
Represents a property, operations on which take one receiver as a parameter.
Parameters
T
- the type of the receiver which should be used to obtain the value of the property.
R
- the type of the property.
Types
interface Getter<T, out R> |