Open
Description
I don't think string.eq
alone will be enough. For string sorting we also need string.lt
(a < b) and string.gt
(a > b) operations.
Or ideally replacing string.eq
(or at least addition) with the more generalized string.ord
which perform lexicographical comparison and return -1
if (a < b), +1
if (a > b) and 0
if (a == b).
WDYT?
Metadata
Metadata
Assignees
Labels
No labels