Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readFile' :: MonadIO m => FilePath -> m Stringrelude Relude.Lifted.File Warning: readFile' depends on the system's locale settings and can throw unexpected exceptions.Use readFileBS or readFileLBS instead.
readIORef :: MonadIO m => IORef a -> m arelude Relude.Lifted.IORef Lifted version of readIORef.
>>> ref <- newIORef 42 >>> readIORef ref 42
reader :: MonadReader r m => (r -> a) -> m arelude Relude.Monad.Reexport Retrieves a function of the current environment.
readEither :: Read a => String -> Either Text arelude Relude.String.Conversion Version of readEither that returns Text in case of the parse error.
>>> readEither @Int "123" Right 123 >>> readEither @Int "aa" Left "Prelude.read: no parse"
readMaybe :: Read a => String -> Maybe arelude Relude.String.Reexport Parse a string using the Read instance. Succeeds if there is exactly one valid result.
>>> readMaybe "123" :: Maybe Int Just 123
>>> readMaybe "hello" :: Maybe Int Nothing
-
relude Relude.String.Reexport equivalent to readsPrec with a precedence of 0.
readMVar :: StrictMVar a -> IO adistributed-process Control.Distributed.Process.Internal.StrictMVar No documentation available.
readTQueue :: TQueue a -> STM adistributed-process Control.Distributed.Process.Internal.WeakTQueue Read the next value from the TQueue.
readLogRecord :: IsReadableLogRecord r => r -> IO ImmutableLogRecordhs-opentelemetry-api OpenTelemetry.Internal.Logs.Types Reads the current state of the LogRecord from its internal IORef. The implementation mirrors readIORef.
readLogRecordAttributeLimits :: IsReadWriteLogRecord r => r -> AttributeLimitshs-opentelemetry-api OpenTelemetry.Internal.Logs.Types Reads the attribute limits from the LoggerProvider that emitted the LogRecord. These are needed to add more attributes.