Begins a new hash code computation by returning an initialized, stateful Hasher instance that is ready to receive data. Example: HashFunction hf = Hashing.md5(); HashCode hc = hf.newHasher() .putLong(id) .putBoolean(isActive) .hash();
()
| 134 | * .hash();}</pre> |
| 135 | */ |
| 136 | Hasher newHasher(); |
| 137 | |
| 138 | /** |
| 139 | * Begins a new hash code computation as {@link #newHasher()}, but provides a hint of the expected |
no outgoing calls
no test coverage detected