MurmurHash.hash

Hashes bytes in part of an array. @param data The data to hash. @param offset Where to start munging. @param length How many bytes to process. @param seed The seed to start with. @return The 32-bit hash of the data in question.

  1. int hash(const(ubyte)[] data, int seed)
  2. int hash(const(ubyte)[] data, int offset, int length, int seed)
    class MurmurHash
    static
    int
    hash
    (
    const(ubyte)[] data
    ,
    int offset
    ,
    int length
    ,
    int seed
    )
  3. int hash(ByteBuffer buf, int seed)
  4. long hash(const(ubyte)[] key)
  5. long hash(string key)

Meta