8000
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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link: https://go101.org/optimizations/6-map.html
Under "Clear map entries" it gives the following example to release a map:
aMap = map(map[K]V)
I think this is intended to be aMap = make(map[K]V)?
aMap = make(map[K]V)
The text was updated successfully, but these errors were encountered:
@zeisss Thanks for finding this silly bug!
BTW, since Go 1.21, there is a better way to do this job: golang/go#56351
Sorry, something went wrong.
No branches or pull requests
Link: https://go101.org/optimizations/6-map.html
Under "Clear map entries" it gives the following example to release a map:
I think this is intended to be
aMap = make(map[K]V)
?The text was updated successfully, but these errors were encountered: