appar: A simple applicative parser

[ bsd3, library, parsing ] [ Propose Tags ]

A simple applicative parser in Parsec style


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8
Dependencies base (>=4 && <5), bytestring, fail (>=4.9 && <4.10) [details]
License BSD-3-Clause
Author Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer Kazu Yamamoto <kazu@iij.ad.jp>
Category Parsing
Source repo head: git clone git://github.com/kazu-yamamoto/appar.git
Uploaded by KazuYamamoto at 2019-05-07T01:27:46Z
Distributions Arch:0.1.8, Debian:0.1.8, Fedora:0.1.8, FreeBSD:0.1.4, LTSHaskell:0.1.8, NixOS:0.1.8, Stackage:0.1.8, openSUSE:0.1.8
Reverse Dependencies 4 direct, 3639 indirect [details]
Downloads 63374 total (215 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-05-07 [all 1 reports]

Readme for appar-0.1.8

[back to package description]
This is subset of Parsec.

Parsec 3 provides features which Parsec 2 does not provide:
- Applicative style
- ByteString as input

But Haskell Platform includes Parsec 2, not Parsec 3. Installing
Parsec 3 to Haskell Platform environment makes it mess. So, I have
implemented this.