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.
(
->>>>>>>: ) :: (a -> b -> c -> d -> e -> f -> g -> h) -> h -> a -> b -> c -> d -> e -> f -> g -> hexpress Data.Express.Express Forces the result type of a 7-argument function.
-
express Data.Express.Express Forces the result type of a 8-argument function.
-
express Data.Express.Express Forces the result type of a 9-argument function.
-
express Data.Express.Express Forces the result type of a 10-argument function.
-
express Data.Express.Express Forces the result type of a 11-argument function.
-
express Data.Express.Express Forces the result type of a 12-argument function.
-
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]
(
->:: ) :: TypeRep -> TypeRep -> TypeRepexpress Data.Express.Utils.Typeable An infix alias for mkFunTy. It is right associative.
(
$: ) :: Applicative f => f (a -> b) -> f a -> f bsynthesizer-core Synthesizer.ApplicativeUtility This corresponds to <*>
(
$:: ) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f bsynthesizer-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.