Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unitEnv_lookup_maybe :: UnitEnvGraphKey -> UnitEnvGraph v -> Maybe vghc GHC.Unit.Env No documentation available.
findObjectLinkableMaybe :: Module -> ModLocation -> IO (Maybe Linkable)ghc GHC.Unit.Finder No documentation available.
homeUnitInstanceOfMaybe :: GenHomeUnit u -> Maybe ughc GHC.Unit.Home Return the unit id of the unit that is instantiated by the home unit. E.g. if home unit = q[A=p:B,...] we return (Just q). If the home unit is not an instance of another unit, we return Nothing.
notHomeInstalledModuleMaybe :: Maybe (GenHomeUnit u) -> InstalledModule -> Boolghc GHC.Unit.Home Test if a module doesn't come from the given home unit
notHomeModuleMaybe :: Maybe HomeUnit -> Module -> Boolghc GHC.Unit.Home Test if a module doesn't come from the given home unit
mapMaybeModuleEnv :: (Module -> a -> Maybe b) -> ModuleEnv a -> ModuleEnv bghc GHC.Unit.Module.Env No documentation available.
addBootSuffixLocn_maybe :: IsBootInterface -> ModLocation -> ModLocationghc GHC.Unit.Module.Location No documentation available.
addBootSuffix_maybe :: IsBootInterface -> FilePath -> FilePathghc GHC.Unit.Module.Location Add the -boot suffix if the Bool argument is True
lazyGetMaybe :: Binary a => BinHandle -> IO (Maybe a)ghc GHC.Utils.Binary Deserialize a value serialized by lazyPutMaybe.
lazyPutMaybe :: Binary a => BinHandle -> Maybe a -> IO ()ghc GHC.Utils.Binary Serialize the constructor strictly but lazily serialize a value inside a Just. This way we can check for the presence of a value without deserializing the value itself.