mirror of https://github.com/golang/go.git
doc: simplify links for release notes
Change-Id: If9e3c5a58726ae3628d2e835d71f1a4708594c11 Reviewed-on: https://go-review.googlesource.com/c/go/+/586575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com>
This commit is contained in:
parent
f726c8d0fd
commit
fd54936ea5
|
|
@ -1,6 +1,6 @@
|
||||||
### New unique package
|
### New unique package
|
||||||
|
|
||||||
The new [unique](/pkg/unique) package provides facilities for
|
The new [unique] package provides facilities for
|
||||||
canonicalizing values (like "interning" or "hash-consing").
|
canonicalizing values (like "interning" or "hash-consing").
|
||||||
|
|
||||||
Any value of comparable type may be canonicalized with the new
|
Any value of comparable type may be canonicalized with the new
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
### Iterators
|
### Iterators
|
||||||
|
|
||||||
The new [`iter` package](/pkg/iter/) provides the basic definitions for
|
The new [iter] package provides the basic definitions for working with
|
||||||
working with user-defined iterators.
|
user-defined iterators.
|
||||||
|
|
||||||
The [`slices` package](/pkg/slices/) adds several functions that work
|
The [slices] package adds several functions that work with iterators:
|
||||||
with iterators:
|
|
||||||
- [All](/pkg/slices#All) returns an iterator over slice indexes and values.
|
- [All](/pkg/slices#All) returns an iterator over slice indexes and values.
|
||||||
- [Values](/pkg/slices#Values) returns an iterator over slice elements.
|
- [Values](/pkg/slices#Values) returns an iterator over slice elements.
|
||||||
- [Backward](/pkg/slices#Backward) returns an iterator that loops over
|
- [Backward](/pkg/slices#Backward) returns an iterator that loops over
|
||||||
|
|
@ -22,8 +21,7 @@ with iterators:
|
||||||
- [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
|
- [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
|
||||||
sub-slices of up to n elements of a slice.
|
sub-slices of up to n elements of a slice.
|
||||||
|
|
||||||
The [`maps` package](/pkg/maps/) adds several functions that work
|
The [maps] package adds several functions that work with iterators:
|
||||||
with iterators:
|
|
||||||
- [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
|
- [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
|
||||||
- [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
|
- [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
|
||||||
- [Values](/pkg/maps#Values) returns an iterator over values in m.
|
- [Values](/pkg/maps#Values) returns an iterator over values in m.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<!-- Issue #61395 -->
|
<!-- Issue #61395 -->
|
||||||
The new [`atomic.And`](/pkg/sync/atomic#And) and [`atomic.Or`](/pkg/sync/atomic#Or)
|
The new [And] and [Or] operators apply a bitwise `AND` or `OR` to
|
||||||
operators apply a bitwise `AND` or `OR` to the given input, returning the old value.
|
the given input, returning the old value.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue