Hoogle Search
Within LTS Haskell 24.58 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
<=**< ) :: Monad m => (d -> m e) -> (a -> b -> c -> m d) -> a -> b -> c -> m ecomposition-prelude Control.Composition The bleeding fish operator
(
>-=**> ) :: Monad m => (a -> b -> d -> m e) -> (c -> m d) -> a -> b -> c -> m ecomposition-prelude Control.Composition No documentation available.
(
>=**> ) :: Monad m => (a -> b -> c -> m d) -> (d -> m e) -> a -> b -> c -> m ecomposition-prelude Control.Composition No documentation available.
-
constrained-categories Control.Applicative.Constrained No documentation available.
-
constrained-categories Control.Category.Constrained No documentation available.
-
constrained-categories Control.Category.Constrained.Prelude No documentation available.
-
constrained-categories Control.Category.Constrained.Prelude No documentation available.
(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bfrisby Text.Parsers.Frisby A variant of <*> with the types of the arguments reversed. It differs from flip (<*>) in that the effects are resolved in the order the arguments are presented.
Examples
>>> (<**>) (print 1) (id <$ print 2) 1 2
>>> flip (<*>) (print 1) (id <$ print 2) 2 1
>>> ZipList [4, 5, 6] <**> ZipList [(+1), (*2), (/3)] ZipList {getZipList = [5.0,10.0,2.0]}(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bquaalude Essentials A variant of <*> with the types of the arguments reversed. It differs from flip (<*>) in that the effects are resolved in the order the arguments are presented.
Examples
>>> (<**>) (print 1) (id <$ print 2) 1 2
>>> flip (<*>) (print 1) (id <$ print 2) 2 1
>>> ZipList [4, 5, 6] <**> ZipList [(+1), (*2), (/3)] ZipList {getZipList = [5.0,10.0,2.0]}(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bverset Verset A variant of <*> with the types of the arguments reversed. It differs from flip (<*>) in that the effects are resolved in the order the arguments are presented.
Examples
>>> (<**>) (print 1) (id <$ print 2) 1 2
>>> flip (<*>) (print 1) (id <$ print 2) 2 1
>>> ZipList [4, 5, 6] <**> ZipList [(+1), (*2), (/3)] ZipList {getZipList = [5.0,10.0,2.0]}