lambdaisland / deep-diff2

Deep diff Clojure data structures and pretty print the result
Eclipse Public License 1.0
296 stars 18 forks source link

Add support for Records #1

Closed ikitommi closed 5 years ago

ikitommi commented 5 years ago

Records are treated as maps for simplicity.

plexus commented 5 years ago

Thanks! Does this mean records and maps with the same content are considered equal? It would be better I think to check for type+value in case of records, as that's also how equality on records is implemented.

I'll go ahead and merge this though as it's already an improvement.

ikitommi commented 5 years ago

I agree that type+value would be better - in the future.