Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
parallelThreadPool :: MonadIO m => Int -> m (ThreadPool m a b)HTF Test.Framework.ThreadPool No documentation available.
sequentialThreadPool :: forall (m :: Type -> Type) a b . MonadIO m => ThreadPool m a bHTF Test.Framework.ThreadPool No documentation available.
threadPoolTest :: (Int, Int) -> Int -> IO [()]HTF Test.Framework.ThreadPool No documentation available.
fReadXml :: XmlContent a => FilePath -> IO aHaXml Text.XML.HaXml.XmlContent Read an XML document from a file and convert it to a fully-typed Haskell value.
fReadXml :: XmlContent a => FilePath -> IO aHaXml Text.XML.HaXml.XmlContent.Haskell Read an XML document from a file and convert it to a fully-typed Haskell value.
runInThread :: IO a -> (a -> IO b) -> IO ThreadIdMissingH Control.Concurrent.Thread.Utils Takes a IO action and a function. The IO action will be called in a separate thread. When it is completed, the specified function is called with its result. This is a simple way of doing callbacks.
hReadMIMETypes :: MIMETypeData -> Bool -> Handle -> IO MIMETypeDataMissingH Data.MIME.Types Load a mime.types file from an already-open handle.
maybeRead :: Read a => String -> Maybe aMissingH Data.String.Utils Attempts to parse a value from the front of the string.
class (Show a, Show b, Eq b) =>
MailboxReader a bMissingH Network.Email.Mailbox Main class for readable mailboxes. The mailbox object a represents zero or more Messages. Each message has a unique identifier b in a format specific to each given mailbox. This identifier may or may not be persistent. Functions which return a list are encouraged -- but not guaranteed -- to do so lazily. Implementing classes must provide, at minimum, getAll.
threadedHandler :: HandlerT -> HandlerTMissingH Network.SocketServer Handle each incoming connection in its own thread to make the server multi-tasking.