There is an isomorphism between `A?` and `Option&l...
# arrow
r
There is an isomorphism between
A?
and
Option<A>
and we can exploit that to enrich the
?
api with all the stuff that would be nice to have like
fold
,
map
,
mapN
, etc.