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.

  1. Prefix :: Fixity

    base Data.Data

    No documentation available.

  2. type Pico = Fixed E12

    base Data.Fixed

    Resolution of 10^-12 = .000000000001

    Examples

    >>> show (MkFixed 12345 :: Fixed E12)
    "0.000000012345"
    
    >>> show (MkFixed 12345 :: Pico)
    "0.000000012345"
    

  3. newtype Predicate a

    base Data.Functor.Contravariant

    No documentation available.

  4. Predicate :: (a -> Bool) -> Predicate a

    base Data.Functor.Contravariant

    No documentation available.

  5. module Data.Functor.Product

    Products, lifted to functors.

  6. Pair :: f a -> g a -> Product (f :: k -> Type) (g :: k -> Type) (a :: k)

    base Data.Functor.Product

    No documentation available.

  7. 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')
    

  8. newtype Product a

    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}
    

  9. Product :: a -> Product a

    base Data.Monoid

    No documentation available.

  10. module Data.Proxy

    Definition of a Proxy type (poly-kinded in GHC)

Page 14 of many | Previous | Next