[Haskell-cafe] Need help with learning Parsec
Simon Hengel
sol at typeful.net
Thu Jul 19 15:36:23 CEST 2012
> gettext = Body <$> many1 (noneOf "><")
Note that this is the same as:
gettext = Body `fmap` many1 (noneOf "><")
More information about the Haskell-Cafe
mailing list