Skip to content

Commit 36b8604

Browse files
committed
Add support for complex64/complex128
Support for complex64 was accidentally removed in 72666c8, complex128 is new. Now with tests.
1 parent 25de947 commit 36b8604

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

hashstructure.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -186,17 +186,13 @@ func (w *walker) visit(v reflect.Value, opts *visitOpts) (uint64, error) {
186186
return w.hashDirect(v.Int())
187187
}
188188
return w.hashDirect(v.Interface())
189-
}
190-
191-
if v.CanUint() {
189+
} else if v.CanUint() {
192190
if v.Kind() == reflect.Uint {
193191
// binary.Write requires a fixed-size value.
194192
return w.hashDirect(v.Uint())
195193
}
196194
return w.hashDirect(v.Interface())
197-
}
198-
199-
if v.CanFloat() {
195+
} else if v.CanFloat() || v.CanComplex() {
200196
return w.hashDirect(v.Interface())
201197
}
202198

hashstructure_test.go

+8
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,14 @@ func TestHash_golden(t *testing.T) {
750750
In: float64(42),
751751
Expect: 12162027084228238918,
752752
},
753+
{
754+
In: complex64(42),
755+
Expect: 13187391128804187615,
756+
},
757+
{
758+
In: complex128(42),
759+
Expect: 4635205179288363782,
760+
},
753761
{
754762
In: true,
755763
Expect: 12638153115695167454,

0 commit comments

Comments
 (0)