doc-src/Tutorial/CodeGen/expr
author wenzelm
Mon, 05 Nov 2001 20:58:28 +0100
changeset 12054 a96c9563d568
parent 5377 efb799c5ed3c
permissions -rw-r--r--
export add_tvarsT, add_tvars, add_vars, add_frees (would actually belong to term.ML, but is apt to cause some confusion with the fold-right versions there);

types 'v binop = 'v => 'v => 'v
datatype ('a,'v) expr = Cex 'v
                      | Vex 'a
                      | Bex ('v binop)  (('a,'v) expr) (('a,'v) expr)