http://www.perlmonks.org?node_id=935338


in reply to comparing nested data structures

If the nested data structures contain hashes, you'll have to sort the keys - which makes me think there no "fast trick" in the general case.

I usually go for Test::More::is_deeply. But I don't know whether that's fast enough for you.

Replies are listed 'Best First'.
Re^2: comparing nested data structures
by LanX (Saint) on Nov 02, 2011 at 13:17 UTC
    Great!

    It might be implemented in perl, but it's a core module which will give me a quick start!

    Thx! :)

    Cheers Rolf