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.
Opt_InfoTableMapWithFallback :: GeneralFlagghc-lib-parser GHC.Driver.Session No documentation available.
Opt_InfoTableMapWithStack :: GeneralFlagghc-lib-parser GHC.Driver.Session No documentation available.
ParMakeSemaphore :: FilePath -> ParMakeCountghc-lib-parser GHC.Driver.Session Use the specific semaphore sem to control parallelism (-jsem sem flag).
bitmap :: GenClosure b -> ![Word]ghc-lib-parser GHC.Exts.Heap An StgLargeBitmap describing the pointerhood of its args/free vars
bitmap :: GenClosure b -> ![Word]ghc-lib-parser GHC.Exts.Heap.Closures An StgLargeBitmap describing the pointerhood of its args/free vars
pExtsBitmap :: ParserOpts -> !ExtsBitmapghc-lib-parser GHC.Parser.Lexer bitmap of permitted extensions
rejectPragmaPV :: DisambECP b => LocatedA b -> PV ()ghc-lib-parser GHC.Parser.PostProcess Validate infixexp LHS to reject unwanted {-# SCC ... #-} pragmas
pc_BITMAP_BITS_SHIFT :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform No documentation available.
pc_BITMAP_BITS_SHIFT :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform.Constants No documentation available.
concatMap :: Foldable t => (a -> [b]) -> t a -> [b]ghc-lib-parser GHC.Prelude.Basic Map a function over all the elements of a container and concatenate the resulting lists.
Examples
Basic usage:>>> concatMap (take 3) [[1..], [10..], [100..], [1000..]] [1,2,3,10,11,12,100,101,102,1000,1001,1002]
>>> concatMap (take 3) (Just [1..]) [1,2,3]