Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. forM :: (Traversable t, Monad m) => t a -> (a -> m b) -> m (t b)

    distribution-opensuse OpenSuse.Prelude

    forM is mapM with its arguments flipped. For a version that ignores the results see forM_.

  2. forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()

    distribution-opensuse OpenSuse.Prelude

    forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore the results see forM. forM_ is just like for_, but specialised to monadic actions.

  3. forever :: Applicative f => f a -> f b

    distribution-opensuse OpenSuse.Prelude

    Repeat an action indefinitely.

    Examples

    A common use of forever is to process input from network sockets, Handles, and channels (e.g. MVar and Chan). For example, here is how we might implement an echo server, using forever both to listen for client connections on a network socket and to echo client input on client connection handles:
    echoServer :: Socket -> IO ()
    echoServer socket = forever $ do
    client <- accept socket
    forkFinally (echo client) (\_ -> hClose client)
    where
    echo :: Handle -> IO ()
    echo client = forever $
    hGetLine client >>= hPutStrLn client
    
    Note that "forever" isn't necessarily non-terminating. If the action is in a MonadPlus and short-circuits after some number of iterations. then forever actually returns mzero, effectively short-circuiting its caller.

  4. forceRecomp :: Params cfgType a -> Bool

    dyre Config.Dyre

    Should GHC be given the -fforce-recomp flag?

  5. forceRecomp :: Params cfgType a -> Bool

    dyre Config.Dyre.Params

    Should GHC be given the -fforce-recomp flag?

  6. format :: Formattable a => a -> String

    epub-metadata Codec.Epub.Format

    No documentation available.

  7. formatGuide :: [GuideRef] -> String

    epub-metadata Codec.Epub.Format.Guide

    Format an epub Guide structure for pretty printing

  8. formatManifest :: Manifest -> String

    epub-metadata Codec.Epub.Format.Manifest

    Format an epub Manifest structure for pretty printing

  9. formatMetadata :: Metadata -> String

    epub-metadata Codec.Epub.Format.Metadata

    Format an epub Metadata structure for pretty printing

  10. formatPackage :: Package -> String

    epub-metadata Codec.Epub.Format.Package

    Format an epub Package structure for pretty printing

Page 160 of many | Previous | Next