Skip to content

Commit 64365f4

Browse files
committed
Use MapRange() to iterate maps
``` │ master.bench │ fix-mapkeys.bench │ │ sec/op │ sec/op vs base │ Map-10 3.598µ ± 1% 3.058µ ± 0% -15.00% (p=0.002 n=6) │ master.bench │ fix-mapkeys.bench │ │ B/op │ B/op vs base │ Map-10 1.844Ki ± 0% 1.328Ki ± 0% -27.97% (p=0.002 n=6) │ master.bench │ fix-mapkeys.bench │ │ allocs/op │ allocs/op vs base │ Map-10 130.0 ± 0% 128.0 ± 0% -1.54% (p=0.002 n=6) ```
1 parent 1dee3c3 commit 64365f4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.test

hashstructure.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,11 @@ func (w *walker) visit(v reflect.Value, opts *visitOpts) (uint64, error) {
215215
// Build the hash for the map. We do this by XOR-ing all the key
216216
// and value hashes. This makes it deterministic despite ordering.
217217
var h uint64
218-
for _, k := range v.MapKeys() {
219-
v := v.MapIndex(k)
218+
219+
iter := v.MapRange()
220+
for iter.Next() {
221+
k := iter.Key()
222+
v := iter.Value()
220223
if includeMap != nil {
221224
incl, err := includeMap.HashIncludeMap(
222225
opts.StructField, k.Interface(), v.Interface())

0 commit comments

Comments
 (0)