- or download this
package FixedSizeQueue;
use Moose;
...
push @{$this->items}, $item;
shift @{$this->items} if scalar @{$this->items} > $this->max_size;
}
- or download this
my $q = FixedSizeQueue->new(max_size => 3);
$q->push(3);
...
$q->push(7);
$q->push(9);
print Dumper($q);
- or download this
sub BUILDARGS {
my($this, $max_size)=@_;
return { max_size => $max_size };
}
- or download this
my $q = FixedSizeQueue->new(3);
$q->push(3);
...
$q->push(7);
$q->push(9);
print Dumper($q);