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
In the core iteration code, HashMap.iterate, we use defer close(ch), which has been shown to add some small execution time. We should perform some benchmarks to determine whether it is sensible to be explicit about the channel closing, rather than using defer.
The text was updated successfully, but these errors were encountered:
In the core iteration code,
HashMap.iterate
, we usedefer close(ch)
, which has been shown to add some small execution time. We should perform some benchmarks to determine whether it is sensible to be explicit about the channel closing, rather than usingdefer
.The text was updated successfully, but these errors were encountered: