There difference with `?.let` is that `map` and `f...
# arrow
s
There difference with
?.let
is that
map
and
flatMap
are more fine-grained since
map
requires a non-null return value where with
?.let
you can always return a nullable type.