<@U0B8ZP13Q>: You misunderstood my question... I'm...
# announcements
r
@cedric: You misunderstood my question... I'm talking about the inferred type of the result of the
ofNullable
call e.g. given
val foo = Optional.ofNullable(...)
Kotlin infers a type of
Option<String?>
for
foo
, forcing one to fall back to
val foo: Optional<String> = Optional.ofNullable(...)
.