in reply to Re: Sorting Arrays
in thread Sorting Arrays

Thanks for the tip. I used this to sort my array[][][]. I was able to sort my list by an object property as follows:
@memory_blocks = sort {hex(${$b}[0][0]->address) <=> hex(${$a}[0][0]-> +address)} @memory_blocks;
Hope that might help someone else who gets stuck. Thanks again!