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.

  1. (||**) :: Floating a => Pattern a -> Pattern a -> Pattern a

    tidal-core Sound.Tidal.Core

    No documentation available.

  2. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    appar 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]}
    

  3. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    appar 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]}
    

  4. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    appar 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]}
    

  5. ($$**) :: Expr -> Expr -> Maybe Expr

    code-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. $$, $$|<)

  6. (.**) :: (d -> e) -> (a -> b -> c -> d) -> a -> b -> c -> e

    composition Data.Composition

    No documentation available.

  7. (.***) :: (d -> e) -> (a1 -> a2 -> b -> c -> d) -> a1 -> a2 -> b -> c -> e

    composition Data.Composition

    No documentation available.

  8. (.****) :: (d -> e) -> (a1 -> a2 -> a3 -> b -> c -> d) -> a1 -> a2 -> a3 -> b -> c -> e

    composition Data.Composition

    No documentation available.

  9. (.*****) :: (d -> e) -> (a1 -> a2 -> a3 -> a4 -> b -> c -> d) -> a1 -> a2 -> a3 -> a4 -> b -> c -> e

    composition Data.Composition

    No documentation available.

  10. (.******) :: (d -> e) -> (a1 -> a2 -> a3 -> a4 -> a5 -> b -> c -> d) -> a1 -> a2 -> a3 -> a4 -> a5 -> b -> c -> e

    composition Data.Composition

    No documentation available.

Page 17 of many | Previous | Next