golang-github-powerman-deepequal 0.1.0-2 source package in Ubuntu

Changelog

golang-github-powerman-deepequal (0.1.0-2) unstable; urgency=medium

  * Fix copyright on files with the Go license

 -- Eric Dorland <email address hidden>  Sun, 19 Sep 2021 14:42:28 -0400

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-powerman-deepequal_0.1.0-2.dsc 2.2 KiB 2a4e423b23137dd0b97c8642b9e3a8ff8bfeafcff3d1b93e60d941e2898b16a0
golang-github-powerman-deepequal_0.1.0.orig.tar.gz 7.3 KiB 74ef182a3ba8d8ec04c45f891b313bd50a1eae67c8311e320d03578c4ceb749c
golang-github-powerman-deepequal_0.1.0-2.debian.tar.xz 3.2 KiB dbd5039fe4daf5cc951d706c933e061cac355518d9b9e4b4728e74e7c5b55e2e

No changes file available.

Binary packages built by this source

golang-github-powerman-deepequal-dev: Go library 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).