From a21cf916f418d0d48f46d8f256c5994a80558a94 Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Thu, 26 May 2022 09:52:44 -0700 Subject: [PATCH] doc: add release note for reflect.Value.{Bytes,Len,Cap} Update #47066 Update #52411 Change-Id: I85139d774c16c9e6d1a2592a5abba58a49338674 Reviewed-on: https://go-review.googlesource.com/c/go/+/408874 Reviewed-by: Keith Randall Reviewed-by: Dmitri Shuralyov Reviewed-by: Joseph Tsai --- doc/go1.19.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/go1.19.html b/doc/go1.19.html index c809e10551..df2166d3c1 100644 --- a/doc/go1.19.html +++ b/doc/go1.19.html @@ -308,10 +308,10 @@ Do not send CLs removing the interior tags from such phrases.
reflect

- TODO: https://go.dev/cl/357331: allow Value.Bytes on addressable byte arrays + The method Value.Bytes now accepts addressable arrays in addition to slices.

- TODO: https://go.dev/cl/400954: support Len and Cap on pointer-to-array Value + The methods Value.Len and Value.Cap now successfully operate on a pointer to an array and return the length of that array, to match what the builtin len and cap functions do.

-- 2.48.1