commit | c9668d1be743cfdbab2f2979b8db22e0a6a2e32f | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Sun Apr 03 04:05:26 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Sun Apr 03 04:05:26 2022 +0000 |
tree | 740cf616383317a58c11695d1c5cf7c47f4c6e79 | |
parent | d373c0b2a599f75719a4a96406fc22fb6e8cae4e [diff] | |
parent | 963280ff1cb2d5259a0679cbc467fabb69b4f13a [diff] |
[automerger skipped] Merge Android 12 QPR3 ab/8391262 am: ce43355857 -s ours am: a3f99847d9 -s ours am: 8dab502b73 -s ours am: 1d7f911f63 -s ours am: 963280ff1c -s ours am skip reason: Merged-In Id15da777ea64e396fbc908abc8565b9639f44f1d with SHA-1 71258e7197 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/go-cmp/+/17544764 Change-Id: I13baf7eaf32b68a539d4a4f1387858431ceb9a80 Signed-off-by: Automerger Merge Worker <[email protected]>
This package is intended to be a more powerful and safer alternative to reflect.DeepEqual
for comparing whether two values are semantically equal.
The primary features of cmp
are:
When the default behavior of equality does not suit the needs of the test, custom equality functions can override the equality operation. For example, an equality function may report floats as equal so long as they are within some tolerance of each other.
Types that have an Equal
method may use that method to determine equality. This allows package authors to determine the equality operation for the types that they define.
If no custom equality functions are used and no Equal
method is defined, equality is determined by recursively comparing the primitive kinds on both values, much like reflect.DeepEqual
. Unlike reflect.DeepEqual
, unexported fields are not compared by default; they result in panics unless suppressed by using an Ignore
option (see cmpopts.IgnoreUnexported
) or explicitly compared using the AllowUnexported
option.
See the documentation for more information.
This is not an official Google product.
go get -u github.com/google/go-cmp/cmp
BSD - See LICENSE file