Re: problems when prepending elements to a clist



On Tue, 2002-05-07 at 13:42, Bhaskar S. Manda wrote:

     push @tmp, [ $item->{'title'} => $item->{'link'}];
   }
   $clist->prepend(@tmp);
 }

The prepend() is expecting a list, but @tmp is an array of references to
lists, that is, it's a 2 dimensional array. Also, I'm not sure what you're
putting in the list, it looks like a hash key-value assignment, but this might
be a construct I don't know about.

In Perl 5 the => operator is just a synonym for the , operator.  Some
people like to use it to format their code.  These people will be rudely
shocked by Perl 6 as => will return 'pairs' (a new concept).

2-D lists are used in CListModel, perhaps
you're confusing that with CList?

-bhaskar

-- 
Today is Boomtime the 54th day of Discord in the YOLD 3168
P'tang!

Missile Address: 33:48:3.521N  84:23:34.786W




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]