Getter

JVM
JS
1.0
interface Getter<out R> : Accessor<R>, KFunction<R>

Getter of the property is a get method declared alongside the property.

Inheritors

JVM
JS
1.0

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<out R> : Getter<R>, () -> R
JVM
JS
1.0

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<T, out R> : Getter<R>, (T) -> R
JVM
JS
1.0

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<D, E, out R> : Getter<R>, (D, E) -> R