Hoogle Search

Within LTS Haskell 24.41 (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) -> f -> a -> b -> c -> d -> e -> f

    express Data.Express.Express

    Forces the result type of a 5-argument function.

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

    express Data.Express.Express

    Forces the result type of a 6-argument function.

  3. (->>>>>>>:) :: (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.

  4. (->>>>>>>>:) :: (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.

  5. (->>>>>>>>>:) :: (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.

  6. (->>>>>>>>>>:) :: (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.

  7. (->>>>>>>>>>>:) :: (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.

  8. (->>>>>>>>>>>>:) :: (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.

  9. (-:-) :: 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]
    

  10. (->::) :: TypeRep -> TypeRep -> TypeRep

    express Data.Express.Utils.Typeable

    An infix alias for mkFunTy. It is right associative.

Page 86 of many | Previous | Next