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
Name | Type | Required | Description |
---|---|---|---|
h1, h2, … hN | long | ✔️ | 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
value1 | value2 | h1 | h2 | combined |
---|---|---|---|---|
Hello | World | 753694413698530628 | 1846988464401551951 | -1440138333540407281 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.