Kevin,
On Fri Jan 15 16:27:07 2010, user42@zip.com.au wrote:
Show quoted text> With Queue::Base 1.1 and debian i386 perl 5.10.1, a program
>
> use strict;
> use warnings;
> use Queue::Base;
>
> my $q = Queue::Base->new;
> $q->add (0);
> $q->add (10);
> $q->add (20);
> print "size ",$q->size,"\n";
>
> prints "size 2", where I expected it to be "size 3" after three
add()s.
Show quoted text>
> I suspect the add() can be something like "push @{list}, @_" instead
> of a loop.
This one is also working with the latest version.
Cheers,
Alexei