ello folks,
   
  ...got a bit carried away with references & deeply nested structures. Net 
result is I have an array of the form: -
   
  $ref                                <- reference to nested array
      [0]                             <- nothing at this level to key/sort on
          [0]                         <- this level contains the 'meat'
              ...data...
              {typedefName} = xyz;      <- would like to sort on this but its 
nested
          [1]
      [1]
   
  Normally for sorting on an array we can do
      my @funcs = sort {$a->{typedefName} cmp $b->{typedefName}} @func_recs;
   
  ...but with a key-less extra level, how would I go about sorting?
   
  Let me know if insufficient data re the problem has been supplied.
   
  Thanks, Alan

   

                
---------------------------------
Do you Yahoo!?
 Everyone is raving about the  all-new Yahoo! Mail Beta.

Reply via email to