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. (<=**<) :: Monad m => (d -> m e) -> (a -> b -> c -> m d) -> a -> b -> c -> m e

    composition-prelude Control.Composition

    The bleeding fish operator

  2. (>-=**>) :: Monad m => (a -> b -> d -> m e) -> (c -> m d) -> a -> b -> c -> m e

    composition-prelude Control.Composition

    No documentation available.

  3. (>=**>) :: Monad m => (a -> b -> c -> m d) -> (d -> m e) -> a -> b -> c -> m e

    composition-prelude Control.Composition

    No documentation available.

  4. (<**>) :: (Applicative f r (->), ObjectMorphism r a b, ObjectPair r (r a b) a) => f a -> f (r a b) -> f b

    constrained-categories Control.Applicative.Constrained

    No documentation available.

  5. (:***:) :: k (LFactor p) (LFactor q) -> l (RFactor p) (RFactor q) -> ProductCategory (k :: Type -> Type -> Type) (l :: Type -> Type -> Type) p q

    constrained-categories Control.Category.Constrained

    No documentation available.

  6. (:***:) :: k (LFactor p) (LFactor q) -> l (RFactor p) (RFactor q) -> ProductCategory (k :: Type -> Type -> Type) (l :: Type -> Type -> Type) p q

    constrained-categories Control.Category.Constrained.Prelude

    No documentation available.

  7. (<**>) :: (Applicative f r (->), ObjectMorphism r a b, ObjectPair r (r a b) a) => f a -> f (r a b) -> f b

    constrained-categories Control.Category.Constrained.Prelude

    No documentation available.

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

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

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

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

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

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

Page 21 of many | Previous | Next