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
Currently, functions which return boolean values will allocate new, dynamic closures for their results and store the boolean value (0 or 1) in it. Since there are only two boolean values, we could try to avoid this and point to static closures for true and false instead.
The text was updated successfully, but these errors were encountered:
Currently, functions which return boolean values will allocate new, dynamic closures for their results and store the boolean value (0 or 1) in it. Since there are only two boolean values, we could try to avoid this and point to static closures for
true
andfalse
instead.The text was updated successfully, but these errors were encountered: