HashMurmur3_32

Undocumented in source.
@nogc nothrow
struct HashMurmur3_32 (
uint Seed
) {}

Constructors

this
this(uint seed)
Undocumented in source.

Members

Functions

put
void put(void[] key)
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

value
uint value [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

const key      = "The quick brown fox jumps over the lazy dog.";
const seed     = 0;
const expected = 0xD5C48BFC;

HashMurmur3_32!seed hash;
hash.put(key);
assert(hash.value == expected);

Meta