Skip to content

Commit a2508fe

Browse files
author
Joe Bowman
committed
predefine length of keys return slice
1 parent e060ce2 commit a2508fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/sort.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func Keys[V interface{}](in map[string]V) []string {
11-
out := make([]string, 0)
11+
out := make([]string, 0, len(in))
1212

1313
for k := range in {
1414
out = append(out, k)

0 commit comments

Comments
 (0)