E.g… ``` val property: KProperty1<Fruit,Double...
# language-proposals
n
E.g…
Copy code
val property: KProperty1<Fruit,Double> = getThePropertySomehow()
val fruit : Fruit = getTheFruitSomehow()

val newStateOfFruit = property.copy(fruit, 1.0) // What do I have to do here instead of this made up API call?