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.
doubleReadException :: SomeExceptionbase GHC.IOPort No documentation available.
tryReadMVar :: MVar a -> IO (Maybe a)base GHC.MVar A non-blocking version of readMVar. The tryReadMVar function returns immediately, with Nothing if the MVar was empty, or Just a if the MVar was full with contents a.
machineReadable :: MiscFlags -> Boolbase GHC.RTS.Flags No documentation available.
numIoWorkerThreads :: MiscFlags -> Word32base GHC.RTS.Flags No documentation available.
parGcThreads :: ParFlags -> Word32base GHC.RTS.Flags No documentation available.
cloneThreadStack :: ThreadId -> IO StackSnapshotbase GHC.Stack.CloneStack Clone the stack of a thread identified by its ThreadId
gcdetails_threads :: GCDetails -> Word32base GHC.Stats Number of threads used in this GC
type
IReader t a = t -> Either String (a, t)text Data.Text.Internal.Read No documentation available.
mapReader :: (a -> b) -> Reader r a -> Reader r btransformers Control.Monad.Trans.Reader Transform the value returned by a Reader.
mapReaderT :: (m a -> n b) -> ReaderT r m a -> ReaderT r n btransformers Control.Monad.Trans.Reader Transform the computation inside a ReaderT.
runReaderT (mapReaderT f m) = f . runReaderT m