Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
adjustM :: Monad m => (a -> m a) -> Focus a m ()focus Focus A monadic version of adjust.
-
ghc-lib-parser GHC.Builtin.Types No documentation available.
mapAdjust :: (v -> v) -> Label -> LabelMap v -> LabelMap vghc-lib-parser GHC.Cmm.Dataflow.Label No documentation available.
mkJustExpr :: Type -> CoreExpr -> CoreExprghc-lib-parser GHC.Core.Make Makes a Just from a value of the specified type
adjustDTyConEnv :: (a -> a) -> DTyConEnv a -> TyCon -> DTyConEnv aghc-lib-parser GHC.Core.TyCon.Env No documentation available.
expectJust :: HasDebugCallStack => String -> Maybe a -> aghc-lib-parser GHC.Data.Maybe No documentation available.
firstJust :: Maybe a -> Maybe a -> Maybe aghc-lib-parser GHC.Data.Maybe No documentation available.
firstJusts :: Foldable f => f (Maybe a) -> Maybe aghc-lib-parser GHC.Data.Maybe Takes a list of Maybes and returns the first Just if there is one, or Nothing otherwise.
firstJustsM :: (Monad m, Foldable f) => f (m (Maybe a)) -> m (Maybe a)ghc-lib-parser GHC.Data.Maybe Takes computations returnings Maybes; tries each one in order. The first one to return a Just wins. Returns Nothing if all computations return Nothing.
whenIsJust :: Monad m => Maybe a -> (a -> m ()) -> m ()ghc-lib-parser GHC.Data.Maybe No documentation available.