2006-08-04 19:01:11 +02:00
|
|
|
This library contains functionality for parsing and pretty-printing
|
|
|
|
S-expressions. In addition to that it contains an extremely useful
|
2012-12-20 06:49:32 +01:00
|
|
|
preprocessing module for Camlp4, which can be used to automatically
|
|
|
|
generate code from type definitions for efficiently converting
|
|
|
|
OCaml-values to S-expressions and vice versa. In combination with the
|
|
|
|
parsing and pretty-printing functionality this frees the user from
|
|
|
|
having to write his own I/O-routines for data structures he defines.
|
|
|
|
Possible errors during automatic conversions from S-expressions to
|
|
|
|
OCaml-values are reported in a very human-readable way. Another module
|
|
|
|
in the library allows you to extract and replace sub-expressions in
|
|
|
|
S-expressions.
|
2006-08-04 19:01:11 +02:00
|
|
|
|
|
|
|
Author: Markus Mottl <mmottl@janestcapital.com>
|
2013-03-28 17:28:59 +01:00
|
|
|
WWW: http://ocaml.janestcapital.com/
|