Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (->>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h) -> h -> a -> b -> c -> d -> e -> f -> g -> h

    express Data.Express.Express

    Forces the result type of a 7-argument function.

  2. (->>>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h -> i) -> i -> a -> b -> c -> d -> e -> f -> g -> h -> i

    express Data.Express.Express

    Forces the result type of a 8-argument function.

  3. (->>>>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h -> i -> j) -> j -> a -> b -> c -> d -> e -> f -> g -> h -> i -> j

    express Data.Express.Express

    Forces the result type of a 9-argument function.

  4. (->>>>>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k) -> k -> a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k

    express Data.Express.Express

    Forces the result type of a 10-argument function.

  5. (->>>>>>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k -> l) -> l -> a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k -> l

    express Data.Express.Express

    Forces the result type of a 11-argument function.

  6. (->>>>>>>>>>>>:) :: (a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k -> l -> m) -> m -> a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k -> l -> m

    express Data.Express.Express

    Forces the result type of a 12-argument function.

  7. (-:-) :: Expr -> Expr -> Expr

    express Data.Express.Fixtures

    The list constructor lifted over the Expr type. Works for the element types Int, Char and Bool.

    > zero -:- one -:- unit two
    [0,1,2] :: [Int]
    
    > zero -:- one -:- two -:- nil
    [0,1,2] :: [Int]
    
    > bee -:- unit cee
    "bc" :: [Char]
    

  8. (->::) :: TypeRep -> TypeRep -> TypeRep

    express Data.Express.Utils.Typeable

    An infix alias for mkFunTy. It is right associative.

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

    synthesizer-core Synthesizer.ApplicativeUtility

    This corresponds to <*>

  10. ($::) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f b

    synthesizer-core Synthesizer.ApplicativeUtility

    Instead of mixMulti $:: map f xs the caller should write mixMulti $: mapM f xs in order to save the user from learning another infix operator.

Page 86 of many | Previous | Next