set

abstract infix fun <V> Field<T, V>.set(value: Value<T, V>)(source)
@JvmName(name = "setByField")
open infix fun <V> Field<T, V>.set(value: Field<T, V>)(source)
@JvmName(name = "setPropertyReceiverByField")
open infix fun <V> KProperty1<T, V>.set(value: Field<T, V>)(source)
@JvmName(name = "setByProperty")
open infix fun <V> Field<T, V>.set(value: KProperty1<T, V>)(source)
@JvmName(name = "setPropertyReceiverByProperty")
open infix fun <V> KProperty1<T, V>.set(value: KProperty1<T, V>)(source)
infix inline fun <V> Field<T, V>.set(value: V)(source)
infix inline fun <V> KProperty1<T, V>.set(value: V)(source)
open infix fun <V> KProperty1<T, V>.set(value: Value<T, V>)(source)

Replaces the value of a field with the specified value.

External resources