úÎ½Ø    Safe-Inferred 6Parse a string. Parse errors are reported through the   function. parseString int "123" == 123True8Parse the contents of a file. Parse errors are reported  through the   function. +Parse a natural (i.e. non-negative) number parseString nat "123" == 123True/Parse an integer (or any instance of Integral) parseString int "-123" == -123TrueParse a floating point number $parseString float "-12.34" == -12.34True Synonym for   $parseString (2 =: char 'a') "a" == 2True Synonym for   5parseString ((,) .: char 'a' +: int) "a1" == ('a', 1)True Synonym for  : Allows chaining parsers without the need for parentheses 3parseString ((+) .: int -: space +: int) "1 2" == 3True Synonym for  5parseString ((,) .: char 'a' +: int) "a1" == ('a', 1)True  Synonym for   Identical to  but with lower precedence. =parseString (show $: (+) .: int -: space +: int) "1 2" == "3"True Apply a parser that returns a  and parse the result with  another parser. <parseString (int <: manyTill anyChar (char '9')) "129" == 12True              parsec-utils-0.1.0.0Text.Parsec.Utils parseString parseFilenatintfloat=:+:-:.:$:<:baseGHC.ErrerrorGHC.Base<$Control.Applicative<*><* Data.Functor<$>String