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


in reply to Re: comparing nested data structures
in thread comparing nested data structures

>...going to be faster than a direct comparison?

Well dumping and diffing is done by XS-modules and the dumps can be stored in advance. (BTW: dumping is meant for persistence)

So what are the alternatives you offer?

Cheers Rolf

Replies are listed 'Best First'.
Re^3: comparing nested data structures
by DrHyde (Prior) on Nov 02, 2011 at 10:16 UTC
    If the dumping and diffing can be done using XS, then so can the recursive comparison.
      Dumping and diffing can already be done using XS (respectively built-ins) in practice.

      Cheers Rolf