Subject: | key=># autovivification if $FixedKeys=0 |
Missing key if $FixedKeys=0.
use strict;
use Class::PseudoHash;
use Data::Dumper;
my $phash = Class::PseudoHash->new();
warn Dumper $phash;
$Class::PseudoHash::FixedKeys = 0;
$phash->{foo} = 'bar';
warn Dumper $phash;
See https://github.com/gitpan/Class-PseudoHash/pull/1, https://github.com/ginzel/Class-PseudoHash.
README file needs updating/regenerating.