Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base Text.Read equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS abase Text.Read attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:
That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.readBinP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readDecP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readHexP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readIntP :: Num a => a -> (Char -> Bool) -> (Char -> Int) -> ReadP abase Text.Read.Lex No documentation available.
readOctP :: (Eq a, Num a) => ReadP abase Text.Read.Lex No documentation available.
readSTArray :: Ix i => STArray s i e -> i -> ST s ebase GHC.Arr No documentation available.
readArrayArrayArray# :: MutableArrayArray# s -> Int# -> State# s -> (# State# s, ArrayArray# #)base GHC.ArrayArray No documentation available.
readByteArrayArray# :: MutableArrayArray# s -> Int# -> State# s -> (# State# s, ByteArray# #)base GHC.ArrayArray No documentation available.