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
when hash caching is introduced we could use it to make a first-pass of string comparison try to use it if it is set and do more fancy comparison only if hashes match
When comparing the same string, but of different type (eg. ASCIIStr and _UCS2Str - this is in general possible to get it) they compare using === as false. This is probably what we want (though normally identical strings compare as true under Julia 0.7 even if they have a different memory location), but I just want to make sure that this is intended.
ASCIIStrand_UCS2Str- this is in general possible to get it) they compare using===asfalse. This is probably what we want (though normally identical strings compare astrueunder Julia 0.7 even if they have a different memory location), but I just want to make sure that this is intended.