Parser.Char.singleQuoted
Parser.andMap
(Parser.andMap
with reversed arguments)
Parser.separatedBy
<$>
,<|>
and<*>
(useParser.map
,Parser.or
andParser.and
)
- Quoted parser (thanks to @jivagoalves)
- Updated to elm-check3 and enabled tests again (thanks to @jivagoalves)
- Fixed
Parser.Number.float
issue found by test (thanks again @jivagoalves)
- Update to Elm 0.15
- Parse now returns only the first matching parser, use
Parser.parseAll
to get results of all matching parsers
- Exported sign parser
- Documentation improvement
- Simplified parser by specialising it to Strings
- Splitting out number parsers
- Remove parser record and parseString function
- Added tests
- Fixed float parser