Subject: | Feature request: Nestable |
It would be cool for Hash::Case to work with multilevel hashes.
my %h;
tie %h, 'Hash::Case::Preserve::Nestable';
$h{abc}{def} = 42;
say $h{ABC}{DEF}; # prints 42
This would be similar to Tie::RefHash::Nestable in the perl distribution.