safer, more foolproof hash
: make hash
return an opaque value, and take that type as the second argument
#57055
Labels
breaking
This change will break code
design
Design of APIs or of the language itself
hashing
speculative
Whether the change will be implemented is speculative
The
hash
doc string says:It'd be easy to enforce this with dispatch in v2, if
hash
returned an opaque type and took the same type as the second argument. IfUInt
isn't accepted as the second argument there's less potential for error and confusion.Something like this:
Currently a common practice that would break is seeding
hash
withUInt
constants. This would have to be fixed by changingconst seed = 0xdeadbeef
toconst seed = hash(0xdeadbeef)
. Perhaps a nullary method should be provided, turning this intoconst seed = hash()
?The text was updated successfully, but these errors were encountered: