haskell - Applicative style understanding -


i write following:

(+) <$> 3 <*> 5 <*>' (+) <*> 6 

however problem need somehow flip <*>. idiomatic way in haskell type of chaining i'm trying?

<**> control.applicative flip <*>. example can work that, rearranged:

>((+) <$> 3 <*> 5) <**> ((+) <$> 6) 14 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -