Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 35 |
Nodes: | 6 (0 / 6) |
Uptime: | 29:08:42 |
Calls: | 333 |
Files: | 990 |
Messages: | 84,620 |
I have an application were I need sorting. My tests led me to
this variant that works as I expected (with GNU Awk 5.3.0)
asort (arr, res, "@val_num_desc")
But I originally intended an _inplace_ sort and I thought that
using these commands would also work
PROCINFO["sorted_in"] = "@val_num_desc"
asort (arr)
but the sorting order is (contrary to my specifier) ascending.
So it seems PROCINFO is not considered by the asort() function?
(Or is that just inappropriately used?)
Another question; is there a simple way for a _unique sorting_
like Unix'es 'sort -u'? - By simple I mean some setting, not a
programmed function like using associative array indexes, etc.
On 2025-02-11, Janis Papanagnou <janis_papanagnou+ng@hotmail.com> wrote:[...]
Another question; is there a simple way for a _unique sorting_
like Unix'es 'sort -u'? - By simple I mean some setting, not a
programmed function like using associative array indexes, etc.
I don't think so, but if we consider that the indices of
an associative array must be unique, then it may be workable
to store the data as indices to "uniquefy" it, and use asorti
to sort indices rather than values.
asorti inverts the array, sort of. The values of the array
are lost. The sorted indices become the values of the target
array, whose indices are the natural numbers (integers from 1).