hash_many()
Learn how to use the hash_many() function to return a combined hash value of multiple values.
Returns a combined hash value of multiple values.
Syntax
hash_many(
s1 ,
s2 [,
s3 …])
Parameters
Name | Type | Required | Description |
---|---|---|---|
s1, s2, …, sN | scalar | ✔️ | The values to hash together. |
Returns
The hash() function is applied to each of the specified scalars. The resulting hashes are combined into a single hash and returned.
Examples
print value1 = "Hello", value2 = "World"
| extend combined = hash_many(value1, value2)
Output
value1 | value2 | combined |
---|---|---|
Hello | World | -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.