Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
ft_Bitmap_Init' :: Ptr FT_Bitmap -> IO ()freetype2 FreeType.Support.Bitmap.Internal No documentation available.
ft_GlyphSlot_Own_Bitmap' :: FT_GlyphSlot -> IO FT_Errorfreetype2 FreeType.Support.Bitmap.Internal No documentation available.
ft_Outline_Get_Bitmap :: FT_Library -> Ptr FT_Outline -> Ptr FT_Bitmap -> IO ()freetype2 FreeType.Support.Outline No documentation available.
ft_Outline_Get_Bitmap' :: FT_Library -> Ptr FT_Outline -> Ptr FT_Bitmap -> IO FT_Errorfreetype2 FreeType.Support.Outline.Internal No documentation available.
gbifoldMap :: forall t m a b . (GBifoldMap m t, Monoid m) => (a -> m) -> (b -> m) -> t a b -> mgeneric-functor Generic.Functor Generic implementation of bifoldMap from Bifoldable.
gbimap :: GBimap f => (a -> b) -> (c -> d) -> f a c -> f b dgeneric-functor Generic.Functor Generic implementation of bimap from Bifunctor. See also GenericBifunctor.
gfmap :: GFunctor f => (a -> b) -> f a -> f bgeneric-functor Generic.Functor Generic implementation of fmap. See also GenericFunctor for DerivingVia, using gfmap under the hood.
Example
{-# LANGUAGE DeriveGeneric #-} import GHC.Generics (Generic) import Generic.Functor (gfmap) data Twice a = Twice (Either a a) deriving Generic instance Functor Twice where fmap = gfmapUnlike gsolomap, gfmap is safe to use in all contexts.gfoldMap :: forall t m a . (GFoldMap m t, Monoid m) => (a -> m) -> t a -> mgeneric-functor Generic.Functor -
generic-functor Generic.Functor.Internal No documentation available.
class GMultimapK Identity arr f g =>
GMap1 arr (f :: Type -> Type) (g :: Type -> Type)generic-functor Generic.Functor.Internal No documentation available.