You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When updating to go 1.23 and switching to the iterator based functions in maps and slices we just replaced something like maps.Keys(..) with slices.Collect(maps.Keys(..)) but it would be better to actually use iterators where we can, especially for things like chunking thru really big slices.
The text was updated successfully, but these errors were encountered:
When updating to go 1.23 and switching to the iterator based functions in
maps
andslices
we just replaced something likemaps.Keys(..)
withslices.Collect(maps.Keys(..))
but it would be better to actually use iterators where we can, especially for things like chunking thru really big slices.The text was updated successfully, but these errors were encountered: