You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We know how many events we check for, so we can just generate if () { if () ... } instead of a while cycle that iterates over an array. It will help optimizations to better optimize code. We can also do grouping of rules if there are two consequent rules that check that a first event is A, we can restructure if's to check for A only once.
The text was updated successfully, but these errors were encountered:
We know how many events we check for, so we can just generate
if () { if () ... }
instead of a while cycle that iterates over an array. It will help optimizations to better optimize code. We can also do grouping of rules if there are two consequent rules that check that a first event is A, we can restructure if's to check for A only once.The text was updated successfully, but these errors were encountered: