1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2025-01-15 02:35:53 +01:00
dnscrypt-proxy/vendor/github.com/powerman/deepequal/README.md
2021-08-17 16:56:09 +02:00

15 lines
556 B
Markdown

# Go package with improved reflect.DeepEqual
Most of the code is copied from Go reflect package with slight
modifications.
Differences from reflect.DeepEqual:
- If compared value implements `.Equal(valueOfSameType) bool` method then
it will be called instead of comparing values as is.
- If called `Equal` method will panics then whole DeepEqual will panics too.
This means you can use this DeepEqual method to correctly compare types
like time.Time or decimal.Decimal, without taking in account unimportant
differences (like time zone or exponent).