Out of curiosity, what are these lines at the top ...
# tornadofx
r
Out of curiosity, what are these lines at the top of Properties.kt used for?
Copy code
fun <T> Property<T>.getValue() = value
fun <T> Property<T>.setValue(v: T?) = { value = v }
Isn't that directly possible anyway?