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.

  1. data TyCoMapper env (m :: Type -> Type)

    ghc GHC.Core.Type

    This describes how a "map" operation over a type/coercion should behave

  2. TyCoMapper :: (env -> TyVar -> m Type) -> (env -> CoVar -> m Coercion) -> (env -> CoercionHole -> m Coercion) -> (forall r . () => env -> TyCoVar -> ForAllTyFlag -> (env -> TyCoVar -> m r) -> m r) -> (TyCon -> m TyCon) -> TyCoMapper env (m :: Type -> Type)

    ghc GHC.Core.Type

    No documentation available.

  3. coreToStg_InfoTableMap :: CoreToStgOpts -> Bool

    ghc GHC.CoreToStg

    No documentation available.

  4. concatMapBag :: (a -> Bag b) -> Bag a -> Bag b

    ghc GHC.Data.Bag

    No documentation available.

  5. concatMapBagPair :: (a -> (Bag b, Bag c)) -> Bag a -> (Bag b, Bag c)

    ghc GHC.Data.Bag

    No documentation available.

  6. flatMapBagM :: Monad m => (a -> m (Bag b)) -> Bag a -> m (Bag b)

    ghc GHC.Data.Bag

    No documentation available.

  7. flatMapBagPairM :: Monad m => (a -> m (Bag b, Bag c)) -> Bag a -> m (Bag b, Bag c)

    ghc GHC.Data.Bag

    No documentation available.

  8. module GHC.Data.Bitmap

    No documentation available.

  9. type Bitmap = [StgWord]

    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.

  10. intsToReverseBitmap :: Platform -> Int -> [Int] -> Bitmap

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

Page 448 of many | Previous | Next