Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
data
TyCoMapper env (m :: Type -> Type)ghc GHC.Core.Type This describes how a "map" operation over a type/coercion should behave
-
ghc GHC.Core.Type No documentation available.
coreToStg_InfoTableMap :: CoreToStgOpts -> Boolghc GHC.CoreToStg No documentation available.
concatMapBag :: (a -> Bag b) -> Bag a -> Bag bghc GHC.Data.Bag No documentation available.
concatMapBagPair :: (a -> (Bag b, Bag c)) -> Bag a -> (Bag b, Bag c)ghc GHC.Data.Bag No documentation available.
flatMapBagM :: Monad m => (a -> m (Bag b)) -> Bag a -> m (Bag b)ghc GHC.Data.Bag No documentation available.
flatMapBagPairM :: Monad m => (a -> m (Bag b, Bag c)) -> Bag a -> m (Bag b, Bag c)ghc GHC.Data.Bag No documentation available.
-
No documentation available.
-
ghc GHC.Data.Bitmap A bitmap represented by a sequence of StgWords on the target architecture. These are used for bitmaps in info tables and other generated code which need to be emitted as sequences of StgWords.
intsToReverseBitmap :: Platform -> Int -> [Int] -> Bitmapghc GHC.Data.Bitmap Make a bitmap where the slots specified are the zeros in the bitmap. eg. [0,1,3], size 4 ==> 0x4 (we leave any bits outside the size as zero, just to make the bitmap easier to read). The list of Ints must be already sorted and duplicate-free.