Text.Read.HT
readsInfixPrec :: (Read a, Read b) => String -> Int -> Int -> (a -> b -> c) -> ReadS c Source #
Parse a string containing an infix operator.
(.>) :: ReadS (b -> c) -> ReadS b -> ReadS c infixl 9 Source #
Compose two parsers sequentially.
readMany :: Read a => String -> [a] Source #
maybeRead :: Read a => String -> Maybe a Source #