[#absl-HashState-combine_contiguous-01] = xref:absl.adoc[absl]::xref:absl/HashState.adoc[HashState]::combine_contiguous :relfileprefix: ../../ :mrdocs: Combine a contiguous array of elements into a hash state. == Synopsis Declared in `<absl/hash/hash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:absl/HashState.adoc[HashState] combine_contiguous( xref:absl/HashState.adoc[HashState] hash_state, unsigned char const* first, size_t size); ---- == Description Combines a contiguous array of `size` elements into a hash state, returning the updated state. == Return Value The updated hash state. == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#