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 builtin java compareTo doesnt handle odd characters with very high unicode encodings correctly. It treats them as two parts and only compares the first one. Fix would definitely be possible but I dont think its worth it for now, since it could be quite a performance hit for every string comparison
"" < "𑅰"
should be true but it is false
The text was updated successfully, but these errors were encountered:
The builtin java compareTo doesnt handle odd characters with very high unicode encodings correctly. It treats them as two parts and only compares the first one. Fix would definitely be possible but I dont think its worth it for now, since it could be quite a performance hit for every string comparison
"" < "𑅰"
should be true but it is false
The text was updated successfully, but these errors were encountered: