Hacker News new | ask | show | jobs
by Twey 331 days ago
I suppose Haskell does, as `(+) <$> f1 <*> f2`.
1 comments

In there is also ApplicativeDo that works nicely with this.

    do 
      x <- f1
      y <- f2
      return $ x + y
this is evaluated as applicative in same way.