You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know there is the >>= operator to pipe monads, but why is there no free-standing function named bind? So that instead of x >>= f one could write x |> bind x. This is already possible with map (<!> or |>> depending on operator order).
I know there is the
>>=operator to pipe monads, but why is there no free-standing function namedbind? So that instead ofx >>= fone could writex |> bind x. This is already possible withmap(<!>or|>>depending on operator order).