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
Then (pure true <|> pure false) >>= f is not the same as (pure true >>= f) <|> (pure false >>= f). Because in the first example, the exception thrown by f is not caught.