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. Opt_InfoTableMapWithFallback :: GeneralFlag

    ghc-lib-parser GHC.Driver.Session

    No documentation available.

  2. Opt_InfoTableMapWithStack :: GeneralFlag

    ghc-lib-parser GHC.Driver.Session

    No documentation available.

  3. ParMakeSemaphore :: FilePath -> ParMakeCount

    ghc-lib-parser GHC.Driver.Session

    Use the specific semaphore sem to control parallelism (-jsem sem flag).

  4. bitmap :: GenClosure b -> ![Word]

    ghc-lib-parser GHC.Exts.Heap

    An StgLargeBitmap describing the pointerhood of its args/free vars

  5. bitmap :: GenClosure b -> ![Word]

    ghc-lib-parser GHC.Exts.Heap.Closures

    An StgLargeBitmap describing the pointerhood of its args/free vars

  6. pExtsBitmap :: ParserOpts -> !ExtsBitmap

    ghc-lib-parser GHC.Parser.Lexer

    bitmap of permitted extensions

  7. rejectPragmaPV :: DisambECP b => LocatedA b -> PV ()

    ghc-lib-parser GHC.Parser.PostProcess

    Validate infixexp LHS to reject unwanted {-# SCC ... #-} pragmas

  8. pc_BITMAP_BITS_SHIFT :: PlatformConstants -> {-# UNPACK #-} !Int

    ghc-lib-parser GHC.Platform

    No documentation available.

  9. pc_BITMAP_BITS_SHIFT :: PlatformConstants -> {-# UNPACK #-} !Int

    ghc-lib-parser GHC.Platform.Constants

    No documentation available.

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

Page 609 of many | Previous | Next