Hoogle Search
Within LTS Haskell 24.58 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
pc_SIZEOF_StgSMPThunkHeader :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform No documentation available.
parseConstantsHeader :: FilePath -> IO PlatformConstantsghc-lib-parser GHC.Platform.Constants No documentation available.
pc_OFFSET_StgHeader_ccs :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform.Constants No documentation available.
pc_OFFSET_StgHeader_ldvw :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform.Constants No documentation available.
pc_SIZEOF_StgSMPThunkHeader :: PlatformConstants -> {-# UNPACK #-} !Intghc-lib-parser GHC.Platform.Constants No documentation available.
getObjectHeader :: ReadBinHandle -> IO (Either String ModuleName)ghc-lib-parser GHC.StgToJS.Object Parse object header
IllegalInstanceHead :: IllegalInstanceHeadReason -> IllegalClassInstanceReasonghc-lib-parser GHC.Tc.Errors.Types An illegal type at the head of the instance. See IllegalInstanceHeadReason.
data
IllegalInstanceHeadReason ghc-lib-parser GHC.Tc.Errors.Types Why is a class instance head invalid?
InstHeadAbstractClass :: Class -> IllegalInstanceHeadReasonghc-lib-parser GHC.Tc.Errors.Types An instance for an abstract class from an hs-boot or Backpack hsig file. Example:
- - A.hs-boot module A where class C a
- - B.hs module B where import {-# SOURCE #-} A instance C Int where
- - A.hs module A where import B class C a where f :: a
InstHeadMultiParam :: IllegalInstanceHeadReasonghc-lib-parser GHC.Tc.Errors.Types Multi-param instance without -XMultiParamTypeClasses. Example: instance C a b where {..} Test case: IllegalMultiParamInstance