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
The optimizations of string equality are somewhat fragile. Particularly, the optimization of deciding when we don't need the full generality of memequal and can do something better instead.
The ordering of equality can make a difference, when it really shouldn't. Some orderings generate a memequal call, and some don't.
Compares that are obviously constant-sized, like those against the empty string, can sometimes still generate memequal calls.
Noticed as part of the truthy benchmarks, mentioned here.
The text was updated successfully, but these errors were encountered:
The optimizations of string equality are somewhat fragile. Particularly, the optimization of deciding when we don't need the full generality of
memequal
and can do something better instead.The ordering of equality can make a difference, when it really shouldn't. Some orderings generate a
memequal
call, and some don't.Compares that are obviously constant-sized, like those against the empty string, can sometimes still generate
memequal
calls.Noticed as part of the truthy benchmarks, mentioned here.
The text was updated successfully, but these errors were encountered: