We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e060ce2 commit a2508feCopy full SHA for a2508fe
utils/sort.go
@@ -8,7 +8,7 @@ import (
8
)
9
10
func Keys[V interface{}](in map[string]V) []string {
11
- out := make([]string, 0)
+ out := make([]string, 0, len(in))
12
13
for k := range in {
14
out = append(out, k)
0 commit comments