Wed, 20 Nov 2024 10:02:58 UTC | login

Information for build golang-github-google-cmp-0.2.0-2.fc29

ID58738
Package Namegolang-github-google-cmp
Version0.2.0
Release2.fc29
Epoch
SummaryPackage for comparing Go values in tests
Description 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.
Built bydavidlt
State complete
Volume DEFAULT
StartedThu, 19 Jul 2018 11:25:39 UTC
CompletedThu, 19 Jul 2018 11:25:39 UTC
Tags
f29
f30
f31
RPMs
src
golang-github-google-cmp-0.2.0-2.fc29.src.rpm (info) (download)
noarch
golang-github-google-cmp-devel-0.2.0-2.fc29.noarch.rpm (info) (download)
Changelog * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Mar 21 2018 Robert-André Mauchin <zebob.m@gmail.com> - 0.2.0-1 - First package for Fedora