polyparse: A variety of alternative parser combinator libraries.

[ library, parsing, text ] [ Propose Tags ]

A variety of alternative parser combinator libraries, including the original HuttonMeijer set. The Poly sets have features like good error reporting, arbitrary token type, running state, lazy parsing, and so on. Finally, Text.Parse is a proposed replacement for the standard Read class, for better deserialisation of Haskell values from Strings.


[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] 1.0, 1.1, 1.2, 1.3, 1.4, 1.4.1, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.12.1, 1.13
Dependencies base (<4.4), haskell98 [details]
License LicenseRef-LGPL
Author Malcolm Wallace <Malcolm.Wallace@cs.york.ac.uk>
Maintainer author
Revised Revision 1 made by HerbertValerioRiedel at 2014-12-24T18:02:22Z
Category Text, Parsing
Home page http://www.cs.york.ac.uk/fp/polyparse/
Uploaded by MalcolmWallace at 2007-01-26T17:41:18Z
Distributions Arch:1.13, Debian:1.13, Fedora:1.13, FreeBSD:1.11, LTSHaskell:1.13, NixOS:1.13, Stackage:1.13, openSUSE:1.13
Reverse Dependencies 18 direct, 4424 indirect [details]
Downloads 193079 total (232 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 polyparse-1.0

[back to package description]
    polyparse - a collection of alternative parser combinator libraries
    -------------------------------------------------------------------

Installation instructions:
We currently support nhc98, ghc, and Hugs.  The automatic configuration
detects which compilers/interpreters you have, and prepares a build
tree for each.  Installation may require write-permission on the system
directories of the compiler/interpreter.  The libraries and interfaces
can then be used as "-package polyparse" (for ghc/nhc98 - no extra options
required for Hugs).

    sh configure
    make
    make install

Options to configure are:
    --buildwith=...  e.g. ghc-6.6,        to build for a specific compiler
    --prefix=...     e.g. /usr/local,     to change installation location

Complaints to:  :-)
    Malcolm.Wallace@cs.york.ac.uk

P.S.
    For those building on Windows /without/ Cygwin, you can avoid the need
    for configure/make steps by simply running the minimal build script in
        Build.bat
    You will need to edit it for the location of your compiler etc.

----
What this package contains:

  docs/			Some rudimentary HTML documentation about the libraries.
  docs/haddock/		Haddock-generated API documentation.
  examples/		Some small examples of how the libraries are used.

  src/Text
	Parse		A replacement for the Prelude Read class.
  src/Text/ParserCombinators
	HuttonMeijer		Early parser combinators from 1996.
	HuttonMeijerWallace	Extended for arbitrary token type + running
				state + error msgs.
	Poly		Space-efficient combinators that allow arbitrary
			token type.
	PolyState	arbitrary token type + running state.
	PolyLazy	arbitrary token type + lazy return of results.
	PolyStateLazy	arbitrary token type + running state + lazy results.

----