Data::StackedMap

An object that stores key/value pairs in a stacked fashion
Download

Data::StackedMap Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Claes Jakobsson
  • Publisher web site:
  • http://search.cpan.org/~claesjac/

Data::StackedMap Tags


Data::StackedMap Description

An object that stores key/value pairs in a stacked fashion Data::StackedMap is a Perl object that stores key/value pairs in a stacked fashion.SYNOPSIS use Data::StackedMap; my $data = Data::StackedMap->new(); $data->set("foo" => 10); print $data->get("foo"); # prints '10' $data->push(); print $data->get("foo"); # still prints '10' $data->set("foo" => 20); print $data->get("foo"); # now prints '20' $data->pop(); print $data->get("foo"); # prints '10' againThis class implements a simple key/value map where each key can exist multiple times in different layers in a stack. Requirements: · Perl


Data::StackedMap Related Software