golang-github-apparentlymart-go-dump 0.0~git20190214.042adf3-3 source package in Ubuntu

Changelog

golang-github-apparentlymart-go-dump (0.0~git20190214.042adf3-3) unstable; urgency=medium

  * update watch file

 -- Thorsten Alteholz <email address hidden>  Thu, 14 Jan 2021 22:35:24 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-apparentlymart-go-dump_0.0~git20190214.042adf3-3.dsc 2.6 KiB 8fc137916815b9590872ae56e18ac08ad21ec4c4e347b0d9cb276f4af1cf2d6b
golang-github-apparentlymart-go-dump_0.0~git20190214.042adf3.orig.tar.xz 6.6 KiB abbde92816d2514db9c79b3cc76705f4f5589efb2c4b65f430075ff693b7d719
golang-github-apparentlymart-go-dump_0.0~git20190214.042adf3-3.debian.tar.xz 1.8 KiB 40d72f1b6d14a60e9d3c5fa9fc3e3c27dfd719865b931b330b36cfe1665b7ca9

No changes file available.

Binary packages built by this source

golang-github-apparentlymart-go-dump-dev: utility for formatting Go values in a pretty-printed way

 This package attempts to find a nice compromise between the
 built-in formatter and more advanced formatters like go-spew
 (https://github.com/davecgh/go-spew). Go types often implement the
 fmt.GoStringer interface to produce a more concise representation of
 values in Go syntax, but conventionally this result is a single-line
 string and thus hard to read for larger data structures. go-spew instead
 produces a formatted dump of a value by using the reflect package to
 analyze its contents, but this often exposes the internals of data
 structures that make the result hard to read.