Does PLEG implement short-circuit evaluations? because I try to optimize my conditions for short-circuit evaluation ( I have lots of complicated conditions!) …
I am an electrical engineer by training … we tend to protect against short circuits … but hate to evaluate them … often lets the smoke out!
If you mean evaluations with an AND … and that if the left part returns FALSE … do I evaluate the right side … the answer is yes I evaluate both parts … so no I do not perform short-circuit evaluation.
This optimization is NOT required since I have no functions (with potential side effects).
Good to know, thanks!