appar: A simple applicative parser

[ bsd3, library, parsing ] [ Propose Tags ]

A simple applicative parser in Parsec style


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

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 && <4.13), bytestring [details]
License BSD-3-Clause
Author Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer Kazu Yamamoto <kazu@iij.ad.jp>
Revised Revision 1 made by Bodigrim at 2022-10-31T20:26:07Z
Category Parsing
Source repo head: git clone git://github.com/kazu-yamamoto/appar.git
Uploaded by KazuYamamoto at 2011-01-06T09:38:12Z
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, 3634 indirect [details]
Downloads 63185 total (202 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for appar-0.1.3

[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.