setTo

infix inline fun <T, V> KProperty1<T, V>.setTo(value: V?)(source)
infix fun <T> KProperty1<T, String>.setTo(value: String?)(source)
infix fun <T> KProperty1<T, Int>.setTo(value: Int?)(source)
infix fun <T> KProperty1<T, Long>.setTo(value: Long?)(source)
infix fun <T> KProperty1<T, Float>.setTo(value: Float?)(source)
infix fun <T> KProperty1<T, Double>.setTo(value: Double?)(source)
infix fun <T> KProperty1<T, Boolean>.setTo(value: Boolean?)(source)

Sets the value of the column with the name of the KProperty1 to value