in reply to Re: How do I convert entire hash to lowercase?
in thread How do I convert entire hash to lowercase?

Very nice! Let's make it work on a hash reference:

$h_ref = { map lc, %$h_ref };

For those of you who don't quite follow, here are the rules:

You can get by without the anonymous hash construction, but I thought it was more clear. map is nice.