Sort a %Library.ListOfObjects
I have a list of %Library.ArrayOfObjects . Each of list elements has some properties. I have to sort list by one of its objects properties. Is there a predefined method to doing that? (quicksort maybe?)
Discussion (3)0
Comments
Hi,
no. There aren't any library methods for that. It should be simple enough to implement a fairly generic quicksort you can re-use.
cheers, Fab
given the property you want to sort is unique and suitable as key for your array you may get the expected result.
set key=obj.sortproperty
set tSC=myArray.SetAt(obj, key)
set tSC=myArray.
- Copy them into new array with keys = target property value. Iteration over this new array would be ordered as desired. Or when you set your array initially you can set keys = target property value.
- Another option is to order by local. Set some local with subscript = target property value, and local value as an oref. Then iterate over the local - you'll get ordered orefs.