https://github.com/g0hacker/goc2p/blob/master/src/basic/map1/omap.go#L38 ```go return omap.elemType == reflect.TypeOf(e) ``` this is better than ```go if reflect.TypeOf(e) != omap.elemType { return false } return true ```