Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. mkTupleRepApp_maybe :: Type -> Maybe Type

    ghc-lib-parser GHC.Core.Type

    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

  2. namedPiTyBinder_maybe :: PiTyBinder -> Maybe TyCoVar

    ghc-lib-parser GHC.Core.Type

    No documentation available.

  3. repGetTyVar_maybe :: Type -> Maybe TyVar

    ghc-lib-parser GHC.Core.Type

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

  4. runtimeRepLevity_maybe :: RuntimeRepType -> Maybe Levity

    ghc-lib-parser GHC.Core.Type

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

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

    ghc-lib-parser GHC.Core.Type

    No documentation available.

  6. splitAppTyNoView_maybe :: HasDebugCallStack => Type -> Maybe (Type, Type)

    ghc-lib-parser GHC.Core.Type

    Does the AppTy split as in splitAppTy_maybe, but assumes that any coreView stuff is already done

  7. splitAppTy_maybe :: Type -> Maybe (Type, Type)

    ghc-lib-parser GHC.Core.Type

    Attempt to take a type application apart, whether it is a function, type constructor, or plain type application. Note that type family applications are NEVER unsaturated by this!

  8. splitCastTy_maybe :: Type -> Maybe (Type, Coercion)

    ghc-lib-parser GHC.Core.Type

    No documentation available.

  9. splitForAllCoVar_maybe :: Type -> Maybe (CoVar, Type)

    ghc-lib-parser GHC.Core.Type

    Like splitForAllTyCoVar_maybe, but only returns Just if it is a covar binder.

  10. splitForAllForAllTyBinder_maybe :: Type -> Maybe (ForAllTyBinder, Type)

    ghc-lib-parser GHC.Core.Type

    Attempts to take a ForAllTy apart, returning the full ForAllTyBinder

Page 197 of many | Previous | Next