Data Manipulation Nodes
- Updated2023-02-17
- 1 minute(s) read
Data Manipulation Nodes
Creates a number from the component bytes or words.
Shifts a specified input (x) the number of specified bits (y).
Shifts the binary point of the input data without changing its bit pattern.
Rotates the specified input (x) the number of specified bits (y).
Rotates each bit in the specified input (value in) one bit to the left (from least significant to most significant bit), inserts carry in the low-order bit, and returns the most significant bit.
Rotates each bit in the specified input (value in) one bit to the right (from most significant to least significant), inserts carry in the high-order bit, and returns the least significant bit.
Breaks a number into its component bytes or words.
Swaps the high-order 8 bits and the low-order 8 bits for every word in the specified input (data).
Swaps the high-order 16 bits and the low-order 16 bits for every long integer in the specified input (data).