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.
settingsFork :: Settings -> ((forall a . () => IO a -> IO a) -> IO ()) -> IO ()warp Network.Wai.Handler.Warp.Internal Code to fork a new thread to accept a connection. This may be useful if you need OS bound threads, or if you wish to develop an alternative threading model. Default: defaultFork Since 3.0.4
runForget :: Forget r a (b :: k) -> a -> rprofunctors Data.Profunctor No documentation available.
runForget :: Forget r a (b :: k) -> a -> rprofunctors Data.Profunctor.Types No documentation available.
-
megaparsec Text.Megaparsec.Error Pretty-print a ParseErrorBundle. All ParseErrors in the bundle will be pretty-printed in order by doing a single pass over the input stream. The rendered format is suitable for custom GHC pre-processors (as can be specified with -F -pgmF).
-
ansi-terminal System.Console.ANSI No documentation available.
cursorForwardCode :: Int -> Stringansi-terminal System.Console.ANSI No documentation available.
hCursorForward :: Handle -> Int -> IO ()ansi-terminal System.Console.ANSI No documentation available.
-
extra Control.Concurrent.Extra Like once, but immediately starts running the computation on a background thread.
\(x :: IO Int) -> join (onceFork x) == x \(x :: IO Int) -> (do a <- onceFork x; a; a) == x
concatForM :: Monad m => [a] -> (a -> m [b]) -> m [b]extra Control.Monad.Extra Like concatMapM, but has its arguments flipped, so can be used instead of the common fmap concat $ forM pattern.
concatForM :: Monad m => [a] -> (a -> m [b]) -> m [b]extra Extra Like concatMapM, but has its arguments flipped, so can be used instead of the common fmap concat $ forM pattern.