golang-github-modern-go-reflect2 1.0.2-1 source package in Ubuntu

Changelog

golang-github-modern-go-reflect2 (1.0.2-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 1.0.2
  * Update Section to golang
  * Update Standards-Version to 4.6.0 (no changes)
  * Add Multi-Arch hint
  * Remove patch applied in new version
  * Update uscan watch file version to 4
  * Drop golang-github-modern-go-concurrent-dev from Depends

 -- Shengjing Zhu <email address hidden>  Thu, 24 Feb 2022 23:03:55 +0800

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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-modern-go-reflect2_1.0.2-1.dsc 1.7 KiB 04535cf30490a2c0197a140a5b00705880f68d71b7f07f8673551de5d8a5fb29
golang-github-modern-go-reflect2_1.0.2.orig.tar.gz 13.7 KiB 86049e7ba480c7da86b3d459f13a7c6c383a769134bf4eac0023a0aa024244de
golang-github-modern-go-reflect2_1.0.2-1.debian.tar.xz 2.2 KiB 3265392624b4179f144dbf0f96ffeba43f5218330597f42d5c4b6b87adfaac07

Available diffs

No changes file available.

Binary packages built by this source

golang-github-modern-go-reflect2-dev: Reflection API without runtime reflect.Value cost

 The reflect2 package provides a reflection API that avoids runtime
 reflect.Value cost:
 .
  * reflect get/set interface{}, with type checking
  * reflect get/set unsafe.Pointer, without type checking
  * reflect2.TypeByName works like Class.forName found in Java
 .
 This package is designed for low level libraries to optimize reflection
 performance. General applications should still use the standard library
 reflect.