jimbaker/fl-string-pep

Example: Rewriting expression graphs

Opened this issue · 0 comments

Given something like the following using quotes

x{1 <= x < 10}

rewrite as

x[(1 <= x) & (x < 10)]

Such rewriting should be fully recursive and take in account scope (of course). Short-circuit evaluation should be supported as well.

It might be nice to use the pattern matching work!