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. mkTYPEapp_maybe :: RuntimeRepType -> Maybe Type

    ghc-lib GHC.Plugins

    Given a RuntimeRep, applies TYPE to it. On the fly it rewrites TYPE LiftedRep --> liftedTypeKind (a synonym) TYPE UnliftedRep --> unliftedTypeKind (ditto) TYPE ZeroBitRep --> zeroBitTypeKind (ditto) NB: no need to check for TYPE (BoxedRep Lifted), TYPE (BoxedRep Unlifted) because those inner types should already have been rewritten to LiftedRep and UnliftedRep respectively, by mkTyConApp see Note [TYPE and CONSTRAINT] in GHC.Builtin.Types.Prim. See Note [Using synonyms to compress types] in GHC.Core.Type

  2. mkTupleRepApp_maybe :: Type -> Maybe Type

    ghc-lib GHC.Plugins

    Given a `[RuntimeRep]`, apply TupleRep to it On the fly, rewrite TupleRep [] -> zeroBitRepTy (a synonym) See Note [TYPE and CONSTRAINT] in GHC.Builtin.Types.Prim. See Note [Using synonyms to compress types] in GHC.Core.Type

  3. nameModule_maybe :: Name -> Maybe Module

    ghc-lib GHC.Plugins

    No documentation available.

  4. namePun_maybe :: Name -> Maybe FastString

    ghc-lib GHC.Plugins

    No documentation available.

  5. namedPiTyBinder_maybe :: PiTyBinder -> Maybe TyCoVar

    ghc-lib GHC.Plugins

    No documentation available.

  6. recordSelectorTyCon_maybe :: Id -> Maybe RecSelParent

    ghc-lib GHC.Plugins

    No documentation available.

  7. repGetTyVar_maybe :: Type -> Maybe TyVar

    ghc-lib GHC.Plugins

    Attempts to obtain the type variable underlying a Type, without any expansion

  8. runtimeRepLevity_maybe :: RuntimeRepType -> Maybe Levity

    ghc-lib GHC.Plugins

    Check whether a type (usually of kind RuntimeRep) is lifted, unlifted, or unknown. Returns Nothing if the type isn't of kind RuntimeRep. `runtimeRepLevity_maybe rr` returns:

    • `Just Lifted` if rr is `LiftedRep :: RuntimeRep`
    • `Just Unlifted` if rr is definitely unlifted, e.g. IntRep
    • Nothing if not known (e.g. it's a type variable or a type family application).

  9. sORTKind_maybe :: Kind -> Maybe (TypeOrConstraint, Type)

    ghc-lib GHC.Plugins

    No documentation available.

  10. setNominalRole_maybe :: Role -> Coercion -> Maybe CoercionN

    ghc-lib GHC.Plugins

    Converts a coercion to be nominal, if possible. See Note [Role twiddling functions]

Page 301 of many | Previous | Next