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.

  1. 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

  2. runForget :: Forget r a (b :: k) -> a -> r

    profunctors Data.Profunctor

    No documentation available.

  3. runForget :: Forget r a (b :: k) -> a -> r

    profunctors Data.Profunctor.Types

    No documentation available.

  4. errorBundlePrettyForGhcPreProcessors :: (VisualStream s, TraversableStream s, ShowErrorComponent e) => ParseErrorBundle s e -> String

    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).

  5. cursorForward :: Int -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  6. cursorForwardCode :: Int -> String

    ansi-terminal System.Console.ANSI

    No documentation available.

  7. hCursorForward :: Handle -> Int -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  8. onceFork :: IO a -> IO (IO a)

    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
    

  9. 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.

  10. 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.

Page 426 of many | Previous | Next