Replace experimental packages with packages from stdlib #1993
Labels
dependencies
Pull requests that update a dependency file
enhancement
New feature or request
good first issue
Good for newcomers
Across the codebase, there is usage of
golang.org/x/exp/slices
andgolang.org/x/exp/maps
. To my knowledge, these packages were moved into the stdlib starting from Go 1.21, so they can simply be referenced asmaps
orslices
. This means we can replace the experimental packages with the standard library packages.The text was updated successfully, but these errors were encountered: