Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 860 Bytes

binary-not-function.md

File metadata and controls

41 lines (28 loc) · 860 Bytes
title description ms.reviewer ms.topic ms.date
binary_not()
Learn how to use the binary_not() function to return a bitwise negation of the input value.
alexans
reference
11/21/2022

binary_not()

Returns a bitwise negation of the input value.

Syntax

binary_not(value)

[!INCLUDE syntax-conventions-note]

Parameters

Name Type Required Description
value long ✔️ The value to negate.

Returns

Returns logical NOT operation on a number: value.

Example

[!div class="nextstepaction"] Run the query

binary_not(100)

Output

result
-101