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
Unicode specification for sorting string has this to say:
Because collation varies by language and not just by script, it is not possible to arrange the encoding for characters so that simple binary string comparison produces the desired collation order for all languages. Because multi-level sorting is a requirement, it is not even possible to arrange the encoding for characters so that simple binary string comparison produces the desired collation order for any particular language.
Note that the current implementation of Ord on JSON string simply does a byte-by-byte comparison.
The text was updated successfully, but these errors were encountered:
Unicode specification for sorting string has this to say:
Note that the current implementation of Ord on JSON string simply does a byte-by-byte comparison.
The text was updated successfully, but these errors were encountered: