Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMaybeModuleEnv :: (Module -> a -> Maybe b) -> ModuleEnv a -> ModuleEnv bghc-lib-parser GHC.Unit.Module.Env No documentation available.
addBootSuffixLocn_maybe :: IsBootInterface -> ModLocation -> ModLocationghc-lib-parser GHC.Unit.Module.Location No documentation available.
addBootSuffix_maybe :: IsBootInterface -> OsPath -> OsPathghc-lib-parser GHC.Unit.Module.Location Add the -boot suffix if the Bool argument is True
lazyGetMaybe :: Binary a => ReadBinHandle -> IO (Maybe a)ghc-lib-parser GHC.Utils.Binary Deserialize a value serialized by lazyPutMaybe.
lazyPutMaybe :: Binary a => WriteBinHandle -> Maybe a -> IO ()ghc-lib-parser 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.
putDumpFileMaybe :: Logger -> DumpFlag -> String -> DumpFormat -> SDoc -> IO ()ghc-lib-parser GHC.Utils.Logger Dump if the given DumpFlag is set
putDumpFileMaybe' :: Logger -> NamePprCtx -> DumpFlag -> String -> DumpFormat -> SDoc -> IO ()ghc-lib-parser GHC.Utils.Logger Dump if the given DumpFlag is set Unlike putDumpFileMaybe, has a NamePprCtx argument
-
ghc-lib-parser GHC.Utils.Misc No documentation available.
mapMaybe' :: Foldable f => (a -> Maybe b) -> f a -> [b]ghc-lib-parser GHC.Utils.Misc No documentation available.
mapMaybeM :: Applicative m => (a -> m (Maybe b)) -> [a] -> m [b]ghc-lib-parser GHC.Utils.Monad Applicative version of mapMaybe