From: Keith Randall Date: Thu, 26 May 2022 16:52:44 +0000 (-0700) Subject: doc: add release note for reflect.Value.{Bytes,Len,Cap} X-Git-Tag: go1.19beta1~97 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a21cf916f418d0d48f46d8f256c5994a80558a94;p=gostls13.git 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 --- 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.