fix nested functor composition

This commit is contained in:
Stephen Diehl
2016-10-14 17:21:57 +01:00
parent 860f74b3c2
commit 547aca5af4
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -33,4 +33,3 @@ liftAA2 = liftA2 . liftA2
(<<*>>) :: (Applicative f, Applicative g) => f (g (a -> b)) -> f (g a) -> f (g b)
(<<*>>) = liftA2 (<*>)
+1
View File
@@ -23,6 +23,7 @@ import Data.Functor (
)
import Data.Function (flip)
import Data.Function ((.))
infixl 4 $>