We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Range statements like
for k := range maps.Keys(m) {} for v := range maps.Values(m) {}
should be replaced with
for k := range m {} for _, v := range m {}
respectively.
Possibly in scope is making similar corrections for the slice-based Keys/Values functions in x/exp/maps.