Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base Data.Data No documentation available.
-
base Data.Fixed Resolution of 10^-12 = .000000000001
Examples
>>> show (MkFixed 12345 :: Fixed E12) "0.000000012345"
>>> show (MkFixed 12345 :: Pico) "0.000000012345"
-
base Data.Functor.Contravariant No documentation available.
Predicate :: (a -> Bool) -> Predicate abase Data.Functor.Contravariant No documentation available.
-
Products, lifted to functors.
Pair :: f a -> g a -> Product (f :: k -> Type) (g :: k -> Type) (a :: k)base Data.Functor.Product No documentation available.
data
Product (f :: k -> Type) (g :: k -> Type) (a :: k)base Data.Functor.Product Lifted product of functors.
Examples
>>> fmap (+1) (Pair [1, 2, 3] (Just 0)) Pair [2,3,4] (Just 1)
>>> Pair "Hello, " (Left 'x') <> Pair "World" (Right 'y') Pair "Hello, World" (Right 'y')
-
base Data.Monoid Monoid under multiplication.
Product x <> Product y == Product (x * y)
Examples
>>> Product 3 <> Product 4 <> mempty Product {getProduct = 12}>>> mconcat [ Product n | n <- [2 .. 10]] Product {getProduct = 3628800} -
base Data.Monoid No documentation available.
-
Definition of a Proxy type (poly-kinded in GHC)