You are here: Function Reference > Bit/Binary Functions

Bit/Binary Functions

The Bit/Binary functions are summarized in the table below. These functions allow bit manipulation within integers. Click on the function name to jump to a discussion of that function.

Function

Result

BitAnd

Returns the result of a bitwise AND operation performed on two numeric values.

BitClear

Returns the result after clearing the specified bit in a value.

BitNot

Returns the result of a bitwise logical NOT operation performed on a numeric value.

BitOr

Returns the result of a bitwise inclusive OR operation performed on two numeric values.

BitRotate

Returns the result of a bit shift-and-rotate operation performed on a numeric value.

BitSet

Returns the result after setting the specified bit on in a value.

BitShift

Returns the result of a bit logical shift operation performed on a numeric value.

BitTest

Returns TRUE (1) if the specified bit in a value is a 1; otherwise FALSE (0) is returned.

BitXor

Returns the result of a bitwise exclusive OR operation performed on two numeric values.

DashCode

Creates a value to assign to a series of fields from the binary value of an integer.

Dec2Hex

Returns the hexadecimal equivalent of an integer value.

Hex2Dec

Returns the integer equivalent of a hexadecimal string.