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 String String

    happstack-server Happstack.Server.FileServe

    a Map from file extensions to content-types example:

    myMimeMap :: MimeMap
    myMimeMap = Map.fromList [("gz","application/x-gzip"), ... ]
    
    see also: mimeTypes

  2. type MimeMap = Map String String

    happstack-server Happstack.Server.FileServe.BuildingBlocks

    a Map from file extensions to content-types example:

    myMimeMap :: MimeMap
    myMimeMap = Map.fromList [("gz","application/x-gzip"), ... ]
    
    see also: mimeTypes

  3. concatMap :: (a -> Heap b) -> Heap a -> Heap b

    heaps Data.Heap

    O(n). Construct heaps from each element in another heap, and union them together.

    >>> concatMap (\a -> fromList [a,a+1]) (fromList [1,4])
    fromList [1,4,5,2]
    

  4. class Remap (m :: Type -> Type)

    hledger Hledger.Cli

    Like functor, but where the the argument isn't just covariant.

  5. remap :: Remap m => (a -> b) -> (b -> (a, a -> b)) -> m a -> m b

    hledger Hledger.Cli

    Convert between two values.

  6. remap2 :: Remap m => (a -> b) -> (b -> a) -> m a -> m b

    hledger Hledger.Cli

    Restricted version of remap where the values are isomorphic.

  7. remapUpdate :: (a -> b) -> (b -> (a, a -> b)) -> Update a -> Update b

    hledger Hledger.Cli

    Version of remap for the Update type alias.

  8. AkimaPeriodic :: InterpolationMethod

    hmatrix-gsl Numeric.GSL.Interpolation

    No documentation available.

  9. smappend :: (IsString m, Monoid m) => m -> m -> m

    hpqtypes Data.Monoid.Utils

    Concatenate two elements with separator between them.

  10. newtype AnnMap

    hscolour Language.Haskell.HsColour.ACSS

    No documentation available.

Page 985 of many | Previous | Next