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.

  1. ThreadDied :: ThreadStatus

    rebase Rebase.Prelude

    the thread received an uncaught exception

  2. ThreadFinished :: ThreadStatus

    rebase Rebase.Prelude

    the thread has finished

  3. pattern ThreadId :: () => ThreadId# -> ThreadId

    rebase Rebase.Prelude

    No documentation available.

  4. ThreadRunning :: ThreadStatus

    rebase Rebase.Prelude

    the thread is currently runnable or running

  5. data ThreadStatus

    rebase Rebase.Prelude

    The current status of a thread

  6. labelThread :: ThreadId -> String -> IO ()

    rebase Rebase.Prelude

    labelThread stores a string as identifier for this thread. This identifier will be used in the debugging output to make distinction of different threads easier (otherwise you only have the thread state object's address in the heap). It also emits an event to the RTS eventlog.

  7. listThreads :: IO [ThreadId]

    rebase Rebase.Prelude

    List the Haskell threads of the current process.

  8. mapReader :: (a -> b) -> Reader r a -> Reader r b

    rebase Rebase.Prelude

    Transform the value returned by a Reader.

  9. mapReaderT :: (m a -> n b) -> ReaderT r m a -> ReaderT r n b

    rebase Rebase.Prelude

    Transform the computation inside a ReaderT.

  10. runReader :: Reader r a -> r -> a

    rebase Rebase.Prelude

    Runs a Reader and extracts the final value from it. (The inverse of reader.)

Page 644 of many | Previous | Next