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.
whenJustM :: Monad m => m (Maybe a) -> (a -> m ()) -> m ()extra Extra Like whenJust, but where the test can be monadic.
whileJustM :: (Monad m, Monoid a) => m (Maybe a) -> m aextra Extra Keep running an operation until it becomes a Nothing, accumulating the monoid results inside the Justs as the result of the overall loop.
setRequestManager :: Manager -> Request -> Requesthttp-conduit Network.HTTP.Simple Instead of using the default global Manager, use the supplied Manager.
setRequestMethod :: ByteString -> Request -> Requesthttp-conduit Network.HTTP.Simple Set the request method
primalityTestMillerRabin :: Int -> Integer -> Boolcrypton Crypto.Number.Prime Miller Rabin algorithm return if the number is probably prime or composite. the tries parameter is the number of recursion, that determines the accuracy of the test.
testMachineLog :: TestFlags -> Flag PathTemplateCabal Distribution.Simple.Setup No documentation available.
execStmt :: GhcMonad m => String -> ExecOptions -> m ExecResultghc GHC Run a statement in the current interactive context.
execStmt' :: GhcMonad m => GhciLStmt GhcPs -> String -> ExecOptions -> m ExecResultghc GHC Like execStmt, but takes a parsed statement as argument. Useful when doing preprocessing on the AST before execution, e.g. in GHCi (see GHCi.UI.runStmt).
isStmt :: ParserOpts -> String -> Boolghc GHC Returns True if passed string is a statement.
resumeStmt :: Resume -> Stringghc GHC No documentation available.