Combine a contiguous array of elements into a hash state.
Declared in <absl/hash/hash.h>
static
HashState
combine_contiguous(
HashState hash_state,
unsigned char const* first,
size_t size);
Combines a contiguous array of size elements into a hash state, returning the updated state.
The updated hash state.
| Name | Description |
|---|---|
| hash_state | The hash state to update. |
| first | A pointer to the first byte of the array. |
| size | The number of bytes in the array. |