Did the `Option.bind()` function just disappear in...
# arrow
w
Did the
Option.bind()
function just disappear in 1.2? I'm upgrading from 1.1.5 and can't find the replacement. Using nullable data types rather than Option is a simple change and probably preferred over Option in this case, it's just surprising to see
bind()
gone without a deprecation cycle.
r
You need to bind it to a computation on an OptionRaise context
w
Thanks
👍 1