calculateEmptyHashCode static method

int calculateEmptyHashCode()

Implementation

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