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. (<**>) :: Applicative f => f a -> f (a -> b) -> f b

    graphviz Data.GraphViz.Parsing

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

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

    classy-prelude ClassyPrelude

    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. (>****<) :: Gen a -> Gen b -> Gen c -> Gen d -> Gen e -> Gen (a, b, c, d, e)

    checkers Test.QuickCheck.Instances.Tuple

    Generates a 5-tuple using its arguments to generate the parts.

  4. (>***<) :: Gen a -> Gen b -> Gen c -> Gen d -> Gen (a, b, c, d)

    checkers Test.QuickCheck.Instances.Tuple

    Generates a 4-tuple using its arguments to generate the parts.

  5. (>**<) :: Gen a -> Gen b -> Gen c -> Gen (a, b, c)

    checkers Test.QuickCheck.Instances.Tuple

    Generates a 3-tuple using its arguments to generate the parts.

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

    base-prelude BasePrelude.Operators

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

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

    ihaskell IHaskellPrelude

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

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

    incipit-base Incipit.Base

    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. (|**) :: Floating a => Pattern a -> Pattern a -> Pattern a

    tidal-core Sound.Tidal.Core

    No documentation available.

  10. (|**|) :: (Applicative a, Floating b) => a b -> a b -> a b

    tidal-core Sound.Tidal.Core

    No documentation available.

Page 16 of many | Previous | Next