Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. fileMapReadWith :: FilePath -> (UArray Word8 -> IO a) -> IO a

    foundation Foundation.IO.FileMap

    Map in memory the whole content of a file,

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

    generic-data Generic.Data

    Generic (<$). See also gfmap.

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

    generic-data Generic.Data

    Generic fmap.

    instance Functor MyTypeF where
    fmap = gfmap
    

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

    generic-data Generic.Data

    Generic foldMap.

    instance Foldable MyTypeF where
    foldMap = gfoldMap
    

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

    generic-data Generic.Data

    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

    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. gconstmap :: (Generic1 f, Functor (Rep1 f)) => a -> f b -> f a

    generic-data Generic.Data.Internal.Prelude

    Generic (<$). See also gfmap.

  8. 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
    

  9. 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.

  10. 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.

Page 942 of many | Previous | Next