From 33013e8ea821629858643f24c55805f5ddf316b5 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Tue, 27 Feb 2024 22:39:35 +0000 Subject: reflect: add Overflow methods to Type This CL adds new methods synonymous with the method of the same name in reflect.Value to reflect.Type: OverflowComplex, OverflowFloat, OverflowInt, OverflowUint. Fixes #60427 Change-Id: I7a0bb35629e59a7429820f13fcd3a6f120194bc6 GitHub-Last-Rev: 26c11bcffe0f418e7d5c37e14587e738d5d939d6 GitHub-Pull-Request: golang/go#65955 Reviewed-on: https://go-review.googlesource.com/c/go/+/567296 Auto-Submit: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov Reviewed-by: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI --- api/next/60427.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 api/next/60427.txt (limited to 'api') diff --git a/api/next/60427.txt b/api/next/60427.txt new file mode 100644 index 0000000000..0be9da0782 --- /dev/null +++ b/api/next/60427.txt @@ -0,0 +1,4 @@ +pkg reflect, type Type interface, OverflowComplex(complex128) bool #60427 +pkg reflect, type Type interface, OverflowFloat(float64) bool #60427 +pkg reflect, type Type interface, OverflowInt(int64) bool #60427 +pkg reflect, type Type interface, OverflowUint(uint64) bool #60427 -- cgit v1.2.3-54-g00ecf