Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. gmappend' :: (Generic a, Monoid (Rep a ())) => a -> a -> a

    generic-data Generic.Data

    Generic (<>) (or mappend). The difference from gmappend is the Monoid constraint instead of Semigroup, for older versions of base where Semigroup is not a superclass of Monoid.

  2. gconstmap :: (Generic1 f, Functor (Rep1 f)) => a -> f b -> f a

    generic-data Generic.Data.Internal.Prelude

    Generic (<$). See also gfmap.

  3. gfmap :: (Generic1 f, Functor (Rep1 f)) => (a -> b) -> f a -> f b

    generic-data Generic.Data.Internal.Prelude

    Generic fmap.

    instance Functor MyTypeF where
    fmap = gfmap
    

  4. gfoldMap :: (Generic1 f, Foldable (Rep1 f), Monoid m) => (a -> m) -> f a -> m

    generic-data Generic.Data.Internal.Prelude

    Deprecated: This definition has been replaced with gfoldMap.

  5. gmappend :: (Generic a, Semigroup (Rep a ())) => a -> a -> a

    generic-data Generic.Data.Internal.Prelude

    Generic (<>) (or mappend).

    instance Semigroup MyType where
    (<>) = gmappend
    
    See also gmempty.

  6. gmappend' :: (Generic a, Monoid (Rep a ())) => a -> a -> a

    generic-data Generic.Data.Internal.Prelude

    Generic (<>) (or mappend). The difference from gmappend is the Monoid constraint instead of Semigroup, for older versions of base where Semigroup is not a superclass of Monoid.

  7. class GFoldMap (t :: Type -> Type)

    generic-data Generic.Data.Internal.Traversable

    No documentation available.

  8. gfoldMap :: (Generic1 f, GFoldable (Rep1 f), Monoid m) => (a -> m) -> f a -> m

    generic-data Generic.Data.Internal.Traversable

    Generic foldMap.

    instance Foldable MyTypeF where
    foldMap = gfoldMap
    

  9. gfoldMap_ :: (GFoldMap t, Monoid m) => (a -> m) -> t a -> EndoM m

    generic-data Generic.Data.Internal.Traversable

    No documentation available.

  10. RoleImageMap :: Role

    gi-atk GI.Atk.Enums

    An image map object. Usually a graphic with multiple hotspots, where each hotspot can be activated resulting in the loading of another document or section of a document. (Since: 2.1.0)

Page 941 of many | Previous | Next