Setter

JVM
JS
1.0
interface Setter<R> : Accessor<R>, KFunction<Unit>

Setter of the property is a set method declared alongside the property.

Inheritors

JVM
JS
1.0

Setter

Setter of the property is a set method declared alongside the property.

interface Setter<R> : Setter<R>, (R) -> Unit
JVM
JS
1.0

Setter

Setter of the property is a set method declared alongside the property.

interface Setter<T, R> : Setter<R>, (T, R) -> Unit
JVM
JS
1.0

Setter

Setter of the property is a set method declared alongside the property.

interface Setter<D, E, R> : Setter<R>, (D, E, R) -> Unit