calculateEmptyHashCode static method
Implementation
static int calculateEmptyHashCode() {
var hash = MurmurHash.initialize(INITIAL_HASH);
hash = MurmurHash.finish(hash, 0);
return hash;
}
static int calculateEmptyHashCode() {
var hash = MurmurHash.initialize(INITIAL_HASH);
hash = MurmurHash.finish(hash, 0);
return hash;
}