From: Julie Date: Wed, 12 Jun 2019 17:54:51 +0000 (-0400) Subject: doc: add release notes for reflect X-Git-Tag: go1.13beta1~81 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b388d6868fba8a0764d4dbd940a0bd249133923f;p=gostls13.git doc: add release notes for reflect Change-Id: I71a6816f54f8ad0f8531bb3f9de552fd136a0ed4 Reviewed-on: https://go-review.googlesource.com/c/go/+/181943 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.13.html b/doc/go1.13.html index ce3e8c9692..0fe8499f3a 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -291,11 +291,11 @@ TODO
reflect

- TODO: https://golang.org/cl/171337: add Value.IsZero + The new Value.IsZero method reports whether a Value is a zero value for its type.

- TODO: https://golang.org/cl/174531: MakeFunc: allow assignment conversions on values returned from the wrapped function + The MakeFunc function now allows assignment conversions on returned values, instead of requiring exact type match. This is particularly useful when the type being returned is an interface type, but the value actually returned is a concrete value implementing that type.