<@U0F3291QE> I've looked more into the PR, and it ...
# tornadofx
r
@edvin I've looked more into the PR, and it depends on what we decide is necessary. It is necessary if we want to allow code like
SimpleObjectProperty<Date?>
. That code isn't necessary in the sense that
SimpleObjectProperty<Date?>
is technically no different from
SimpleObjectProperty<Date>
. Even the
var date by dateProperty
would be of type
Date?
in both cases, and the
dateProperty.value
is
Date!
in both cases.