vote up 1 vote down star

I know that the names returned by [array names X] are in an undefined order, but are they always in the same undefined order?

I'm going through a very large array, and would like to log progress to a file in case of a crash, so I can resume part-way through again.

PS. A quick experiment implies it is always the same 'random' order, but this doesn't mean it's true!

flag

1 Answer

vote up 4 vote down check

The short answer is that you can't rely on the order and your best bet is to [lsort [array names X]] and use that order.

The long answer is that the order should be stable as long as the keys are the same (and its the same Tcl version)... but I still wouldn't rely on it.

If you're using Tcl 8.5 or later, you might want to look at using a Dict instead of an array. The order of elements for a Dict is the order they were added in.

link|flag
Agh - 8.4! Thanks a lot. – Cormac Jun 16 at 8:49
The good news is that while dict isn't a standard part of 8.4 you can load it as a package. See wiki.tcl.tk/5042 – Jackson Jun 17 at 8:41
You could even write your own proc for lsort so you can force a different order than purely alphabetical, if that matters. – Michael Mathews Jul 25 at 3:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.