binary_not()
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns a bitwise negation of the input value.
binary_not(
value)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
value | long |
✔️ | The value to negate. |
Returns logical NOT operation on a number: value.
binary_not(100)
Output
result |
---|
-101 |