annotate parse.ur @ 30:4e673b535434

Optimizing JSON generation
author Adam Chlipala <adam@chlipala.net>
date Thu, 04 Dec 2014 19:52:51 -0500
parents 8eaaca74a64c
children
rev   line source
adam@9 1 (** Datatypes for describing parse results *)
adam@9 2
adam@9 3 datatype parse a =
adam@9 4 Success of a
adam@9 5 | Failure of string