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

Changelog

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

  * Team upload.
  * Add patch for gccgo

 -- Shengjing Zhu <email address hidden>  Sun, 27 Feb 2022 00:22:22 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-modern-go-reflect2_1.0.2-2.dsc 1.7 KiB cf4ba2c4e38fffda1f4cf666f9aa6284c398d153260be2b37f39bd5da468a590
golang-github-modern-go-reflect2_1.0.2.orig.tar.gz 13.7 KiB 86049e7ba480c7da86b3d459f13a7c6c383a769134bf4eac0023a0aa024244de
golang-github-modern-go-reflect2_1.0.2-2.debian.tar.xz 2.8 KiB b2fbdbc93fe56bc9710f12db22424770a8f23cfb602cd3f16a6d7179d9f909dd

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.