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.
-
greskell-core Data.Greskell.GMap General parser for GMap.
-
greskell-core Data.Greskell.GMap General parser for GMapEntry.
unFlattenedMap :: FlattenedMap (c :: Type -> Type -> Type) k v -> c k vgreskell-core Data.Greskell.GMap No documentation available.
-
greskell-core Data.Greskell.GMap Get the map implementation from GMap.
unGMapEntry :: GMapEntry k v -> (k, v)greskell-core Data.Greskell.GMap Get the key-value pair from GMapEntry.
type
MimeMap = Map String Stringhappstack-server Happstack.Server.FileServe a Map from file extensions to content-types example:
myMimeMap :: MimeMap myMimeMap = Map.fromList [("gz","application/x-gzip"), ... ]see also: mimeTypestype
MimeMap = Map String Stringhappstack-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: mimeTypesconcatMap :: (a -> Heap b) -> Heap a -> Heap bheaps 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]
class
Remap (m :: Type -> Type)hledger Hledger.Cli Like functor, but where the the argument isn't just covariant.
remap :: Remap m => (a -> b) -> (b -> (a, a -> b)) -> m a -> m bhledger Hledger.Cli Convert between two values.