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.
(
||** ) :: Floating a => Pattern a -> Pattern a -> Pattern atidal-core Sound.Tidal.Core No documentation available.
(
<**> ) :: Applicative f => f a -> f (a -> b) -> f bappar Text.Appar.ByteString 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 bappar Text.Appar.LazyByteString 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 bappar Text.Appar.String 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]}(
$$** ) :: Expr -> Expr -> Maybe Exprcode-conjure Conjure.Expr Like $$ but always works regardless of type. Warning: just like :$, this may produce ill-typed expressions.
> zero $$** zero Just (0 0 :: ill-typed # Int $ Int #)
Together with $$|<, this function is unused but is useful when experiment with the source to see the effect of type-corrected on pruning the search space. (cf. $$, $$|<)(
.** ) :: (d -> e) -> (a -> b -> c -> d) -> a -> b -> c -> ecomposition Data.Composition No documentation available.
(
.*** ) :: (d -> e) -> (a1 -> a2 -> b -> c -> d) -> a1 -> a2 -> b -> c -> ecomposition Data.Composition No documentation available.
(
.**** ) :: (d -> e) -> (a1 -> a2 -> a3 -> b -> c -> d) -> a1 -> a2 -> a3 -> b -> c -> ecomposition Data.Composition No documentation available.
(
.***** ) :: (d -> e) -> (a1 -> a2 -> a3 -> a4 -> b -> c -> d) -> a1 -> a2 -> a3 -> a4 -> b -> c -> ecomposition Data.Composition No documentation available.
-
composition Data.Composition No documentation available.