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
Here is another example where the ordering of the output is ignored:
func ExamplePerm() {
for _, value := range Perm(4) {
fmt.Println(value)
}
// Unordered output: 4
// 2
// 1
// 3
// 0
}
And we may want to make that a valid case, too?
The text was updated successfully, but these errors were encountered:
I just spotted in https://pkg.go.dev/cmd/go/internal/test:
And we may want to make that a valid case, too?
The text was updated successfully, but these errors were encountered: