We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In cmd/latencygen/latency_gen.go:32 we can replace these two lines:
cmd/latencygen/latency_gen.go:32
keys := maps.Keys(allToAllMatrix) sort.Strings(keys)
With this line:
keys := slices.Sorted(maps.Keys(allToAllMatrix))
When Go 1.23 is released with support for rangefunc. See golang/go:#61538 for additional context and golang/go:#61900 for the accepted proposal.
Similar updates needs to be done in crypto/cache.go and twins/network.go.
crypto/cache.go
twins/network.go
The text was updated successfully, but these errors were encountered:
meling
No branches or pull requests
In
cmd/latencygen/latency_gen.go:32
we can replace these two lines:With this line:
When Go 1.23 is released with support for rangefunc. See golang/go:#61538 for additional context and golang/go:#61900 for the accepted proposal.
Similar updates needs to be done in
crypto/cache.go
andtwins/network.go
.The text was updated successfully, but these errors were encountered: