Open jimbaker opened 4 years ago
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!
Given something like the following using quotes
rewrite as
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!