in reply to what's the best way to compare two 2D hashes?

Another way is to use Data::Compare.
if ( Compare($href1, $href2) ) { # equal ... }
Boris

Replies are listed 'Best First'.
Re^2: what's the best way to compare two 2D hashes?
by coontie (Sexton) on Jun 23, 2005 at 19:18 UTC
    Let me try this data::compare -- it seems to be the cleanest way so far.