diff --git a/doc/go1.22.html b/doc/go1.22.html index b6be84168e..0d358b8046 100644 --- a/doc/go1.22.html +++ b/doc/go1.22.html @@ -534,20 +534,16 @@ Do not send CLs removing the interior tags from such phrases.
slices
-

- TODO: https://go.dev/issue/56353: add Concat +

+ The new function Concat concatenates multiple slices.

-

- TODO: https://go.dev/issue/63393: have Delete and others clear the tail +

+ Functions that shrink the size of a slice (Delete, DeleteFunc, Compact, CompactFunc, and Replace) now zero the elements between the new length and the old length.

-

- TODO: https://go.dev/cl/504882: slices: add Concat -

- -

- TODO: https://go.dev/cl/540155: slices: make Insert panic if index is out of range and there are no values +

+ Insert now always panics if the argument i is out of range. Previously it did not panic in this situation if there were no elements to be inserted.