Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. isReflCo_maybe :: Coercion -> Maybe (Type, Role)

    ghc-lib GHC.Plugins

    Returns the type coerced if this coercion is reflexive. Guaranteed to work very quickly. Sometimes a coercion can be reflexive, but not obviously so. c.f. isReflexiveCo_maybe

  2. isReflexiveCo_maybe :: Coercion -> Maybe (Type, Role)

    ghc-lib GHC.Plugins

    Extracts the coerced type from a reflexive coercion. This potentially walks over the entire coercion, so avoid doing this in a loop.

  3. kindBoxedRepLevity_maybe :: Type -> Maybe Levity

    ghc-lib GHC.Plugins

    Check whether a kind is of the form `TYPE (BoxedRep Lifted)` or `TYPE (BoxedRep Unlifted)`. Returns:

    • `Just Lifted` for `TYPE (BoxedRep Lifted)` and Type,
    • `Just Unlifted` for `TYPE (BoxedRep Unlifted)` and UnliftedType,
    • Nothing for anything else, e.g. `TYPE IntRep`, `TYPE (BoxedRep l)`, etc.

  4. kindRep_maybe :: HasDebugCallStack => Kind -> Maybe RuntimeRepType

    ghc-lib GHC.Plugins

    Given a kind (TYPE rr) or (CONSTRAINT rr), extract its RuntimeRep classifier rr. For example, kindRep_maybe * = Just LiftedRep Returns Nothing if the kind is not of form (TYPE rr)

  5. levityType_maybe :: LevityType -> Maybe Levity

    ghc-lib GHC.Plugins

    levityType_maybe takes a Type of kind Levity, and returns its levity May not be possible for a type variable or type family application

  6. lookupIdSubst_maybe :: HasDebugCallStack => Subst -> Id -> Maybe CoreExpr

    ghc-lib GHC.Plugins

    No documentation available.

  7. mapMaybeOccEnv :: (a -> Maybe b) -> OccEnv a -> OccEnv b

    ghc-lib GHC.Plugins

    mapMaybe for b OccEnv.

  8. mapMaybeOccEnv :: (a -> Maybe b) -> OccEnv a -> OccEnv b

    ghc-lib GHC.Plugins

    mapMaybe for b OccEnv.

  9. mkBoxedRepApp_maybe :: LevityType -> Maybe Type

    ghc-lib GHC.Plugins

    Given a Levity, apply BoxedRep to it On the fly, rewrite BoxedRep Lifted --> liftedRepTy (a synonym) BoxedRep Unlifted --> unliftedRepTy (ditto) See Note [TYPE and CONSTRAINT] in GHC.Builtin.Types.Prim. See Note [Using synonyms to compress types] in GHC.Core.Type

  10. mkCONSTRAINTapp_maybe :: RuntimeRepType -> Maybe Type

    ghc-lib GHC.Plugins

    Just like mkTYPEapp_maybe

Page 300 of many | Previous | Next