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. parseToGMap :: (IsList (c k v), Item (c k v) ~ (k, v)) => (s -> Parser k) -> (s -> Parser v) -> (KeyMap s -> Parser (c k v)) -> Either (KeyMap s) (Vector s) -> Parser (GMap c k v)

    greskell-core Data.Greskell.GMap

    General parser for GMap.

  2. parseToGMapEntry :: FromJSONKey k => (s -> Parser k) -> (s -> Parser v) -> Either (KeyMap s) (Vector s) -> Parser (GMapEntry k v)

    greskell-core Data.Greskell.GMap

    General parser for GMapEntry.

  3. unFlattenedMap :: FlattenedMap (c :: Type -> Type -> Type) k v -> c k v

    greskell-core Data.Greskell.GMap

    No documentation available.

  4. unGMap :: GMap c k v -> c k v

    greskell-core Data.Greskell.GMap

    Get the map implementation from GMap.

  5. unGMapEntry :: GMapEntry k v -> (k, v)

    greskell-core Data.Greskell.GMap

    Get the key-value pair from GMapEntry.

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

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

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

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

    hledger Hledger.Cli

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

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

    hledger Hledger.Cli

    Convert between two values.

Page 986 of many | Previous | Next