Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readEventLogOrFail :: ByteString -> Either String EventLogghc-events GHC.RTS.Events.Incremental Read an entire event log from a lazy bytestring. It returns an error message if it encounters an error while decoding. This will raise an error if a malformed event is encountered during decoding.
readEvents :: Header -> ByteString -> ([Event], Maybe String)ghc-events GHC.RTS.Events.Incremental Read events from a lazy bytestring. It returns an error message if it encounters an error while decoding the header. Note that it doesn't fail if it consumes all input in the middle of decoding of an event.
readEvents' :: Header -> ByteString -> [Either String Event]ghc-events GHC.RTS.Events.Incremental Read events from a lazy bytestring. It returns an error message if it encounters an error while decoding the header. Note that it doesn't fail if it consumes all input in the middle of decoding of an event.
readHeader :: ByteString -> Either String (Header, ByteString)ghc-events GHC.RTS.Events.Incremental Read a header from a lazy bytestring and return the header and the leftover input for subsequent decoding. Note that the input must contain a whole header in one go. If incremental parsing of a header is necessary, use decodeHeader instead.
readExtension :: String -> Maybe Extensionghc-lib-parser-ex Language.Haskell.GhclibParserEx.GHC.Driver.Session Parse a GHC extension.
readyStateChange :: (IsDocument self, IsEventTarget self) => EventName self Eventghcjs-dom GHCJS.DOM.Document readDec' :: (Num a, Eq a) => String -> ahappstack-server Happstack.Server.Internal.Types No documentation available.
readInputsBody :: Request -> IO (Maybe [(String, Input)])happstack-server Happstack.Server.Internal.Types read the request body inputs This will only work if the body inputs have already been decoded. Otherwise it will return Nothing.
readM :: (MonadFail m, Read t) => String -> m thappstack-server Happstack.Server.Internal.Types Read in any monad.
readCookieValue :: (Functor m, Monad m, HasRqData m, FromReqURI a) => String -> m ahappstack-server Happstack.Server.RqData gets the named cookie as the requested Read type