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. type MimeMap = Map Extension MimeType

    mime-types Network.Mime

    Maps extensions to mime types.

  2. defaultExtensionMap :: ExtensionMap

    mime-types Network.Mime

    A mapping of MimeType to a set of Extensions.

  3. defaultMimeMap :: MimeMap

    mime-types Network.Mime

    A default mapping from filename extension to mime type. Generated from the Apache and nginx mime.types files.

  4. concatMap :: TextualMonoid t => (Char -> t) -> t -> t

    monoid-subclasses Data.Monoid.Textual

    Equivalent to concatMap from Data.List with a Char -> String function. Preserves all non-character data.

  5. foldMap :: (Factorial m, Monoid n) => (m -> n) -> m -> n

    monoid-subclasses Data.Semigroup.Factorial

    Generalizes foldMap from Data.Foldable, except the function arguments are prime factors rather than the structure elements.

  6. toMap :: Graph a -> Map (Key a) a

    Cabal-syntax Distribution.Compat.Graph

    O(1). Convert a graph into a map from keys to nodes. The resulting map m is guaranteed to have the property that all ((k,n) -> k == nodeKey n) (toList m).

  7. concatMap :: Foldable t => (a -> [b]) -> t a -> [b]

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  8. fmap :: Functor f => (a -> b) -> f a -> f b

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  9. foldMap :: (Foldable t, Monoid m) => (a -> m) -> t a -> m

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  10. gmappend :: (Generic a, GSemigroup (Rep a)) => a -> a -> a

    Cabal-syntax Distribution.Compat.Prelude

    Generically generate a Semigroup (<>) operation for any type implementing Generic. This operation will append two values by point-wise appending their component fields. It is only defined for product types.

    gmappend a (gmappend b c) = gmappend (gmappend a b) c
    

Page 503 of many | Previous | Next