setValue

inline operator fun <V> WritableValue<in V>.setValue(thisRef: Any?, property: KProperty<*>, value: V?)

Delegated property of this writable V value, use with by keyword.


inline operator fun WritableStringValue.setValue(thisRef: Any?, property: KProperty<*>, value: String?)

Delegated property of this writable String value, use with by keyword.


inline operator fun WritableBooleanValue.setValue(thisRef: Any?, property: KProperty<*>, value: Boolean)

Delegated property of this writable Boolean value, use with by keyword.


inline operator fun WritableDoubleValue.setValue(thisRef: Any?, property: KProperty<*>, value: Double)

Delegated property of this writable Double value, use with by keyword.


inline operator fun WritableFloatValue.setValue(thisRef: Any?, property: KProperty<*>, value: Float)

Delegated property of this writable Float value, use with by keyword.


inline operator fun WritableLongValue.setValue(thisRef: Any?, property: KProperty<*>, value: Long)

Delegated property of this writable Long value, use with by keyword.


inline operator fun WritableIntegerValue.setValue(thisRef: Any?, property: KProperty<*>, value: Int)

Delegated property of this writable Int value, use with by keyword.