Getter
Getter of the property is a get
method declared alongside the property.
Inherited Properties
isExternal
true
if this function is external
.
See the Kotlin language documentation
for more information.
abstract val isExternal: Boolean
isInfix
true
if this function is infix
.
See the Kotlin language documentation
for more information.
abstract val isInfix: Boolean
isInline
true
if this function is inline
.
See the Kotlin language documentation
for more information.
abstract val isInline: Boolean
isOperator
true
if this function is operator
.
See the Kotlin language documentation
for more information.
abstract val isOperator: Boolean
isSuspend
true
if this is a suspending function.
abstract val isSuspend: Boolean
Inheritors
Getter
Getter of the property is a get
method declared alongside the property.
interface Getter<out V> : KProperty.Getter<V>, () -> V
Getter
Getter of the property is a get
method declared alongside the property.
interface Getter<T, out V> : KProperty.Getter<V>, (T) -> V
Getter
Getter of the property is a get
method declared alongside the property.
interface Getter<D, E, out V> :
KProperty.Getter<V>,
(D, E) -> V