I'd argue that `optional.orNull()?.foo()` is more ...
# announcements
k
I'd argue that
optional.orNull()?.foo()
is more expressive than
optional.map(Foo::foo).orElse(null)
, though it does require declaring a non-standard extension function