diff options
Diffstat (limited to 'doc/memoize.html')
-rw-r--r-- | doc/memoize.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/memoize.html b/doc/memoize.html new file mode 100644 index 0000000..780031b --- /dev/null +++ b/doc/memoize.html @@ -0,0 +1,32 @@ + +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Memoization - Packrat Docs</title> + <link href="default.css" rel="stylesheet"> + </head> + + <body> + + + <h2>Memoization</h2> + + <a href="index.html">Return to Contents</a> + + + <p><strong>CAUTION:</strong> This is implementation information and should not be + relied upon in any way when using the library.</p> + + <p>All intermediate parsing results are memoized. This is automatic and + unavoidable, and is necessary to make piecewise parsing possible.</p> + + <p>When piecewise parsing, the combinators that return partially complete + results are used to determine what portion of the input must be passed + forwards to allow calculating the full result when parsing future pieces.</p> + + + </body> +</html> + |