hash_combine()

learn how to use the hash_combine() function to combine hash values of two or more hashes.

Combines hash values of two or more hashes.

Syntax

hash_combine(h1 , h2 [, h3 …])

Parameters

NameTypeRequiredDescription
h1, h2, … hNlong✔️The hash values to combine.

Returns

The combined hash value of the given scalars.

Examples

print value1 = "Hello", value2 = "World"
| extend h1 = hash(value1), h2=hash(value2)
| extend combined = hash_combine(h1, h2)

Output

value1value2h1h2combined
HelloWorld7536944136985306281846988464401551951-1440138333540407281