[#MurmurHash3] = MurmurHash3 :mrdocs: Computes the 32‐bit MurmurHash3 of the given data. == Synopsis Declared in `<hash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- unsigned int MurmurHash3( unsigned int nHashSeed, std::span<unsigned char const> vDataToHash); ---- == Return Value The 32‐bit MurmurHash3 value. == Parameters [cols="1,4"] |=== | Name| Description | *nHashSeed* | The seed value for the hash. | *vDataToHash* | The data to hash. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#