All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fregata.hash.FastHash.scala Maven / Gradle / Ivy

The newest version!
package fregata.hash

/**
  * Created by hjliu on 16/11/25.
  */
class FastHash extends Hash {

  def getHash(in:Long):Int = {
    var h = in
    h ^= (h >> 23)
    h *= 0x2127599bf4325c37L
    h ^= h >> 47
    math.abs(h.toInt)
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy