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
Most similar languages short-circuit logical operators such that if the left side of the expression would determine the result of the expression, then the right side is simply not evaluated. For instance; true || somethingComplicated(), this library currently evaluates somethingComplicated() even though it has no reason to - the left side will cause the whole expression to be true.
The text was updated successfully, but these errors were encountered:
Most similar languages short-circuit logical operators such that if the left side of the expression would determine the result of the expression, then the right side is simply not evaluated. For instance;
true || somethingComplicated()
, this library currently evaluatessomethingComplicated()
even though it has no reason to - the left side will cause the whole expression to betrue
.The text was updated successfully, but these errors were encountered: