|
Data::Stack - A Stack! |
Data::Stack - A Stack!
use Data::Stack; my $stack = new Data::Stack();
Quite simple, really. Just a stack implemented via an array.
peek()get($INDEX)count()empty()clear()pop()push($item)
None by default.
There are various Stack packages out there but none of them seemed simple enough. Here we are!
Cory Watson, <cpan@onemogin.com>
Copyright (C) 2006 by Cory Watson
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
|
Data::Stack - A Stack! |