Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Bitwise NOT operation - inverts all bits in a value
Technical Exegesis...
Bitwise NOT operation - inverts all bits in a value. Flips each bit: 1 becomes 0, 0 becomes 1. Syntax is BitNot value. Returns the bitwise complement of the input. Used for inverting bit patterns, creating inverse masks, or bit manipulation. Different from logical Not which treats the entire value as a boolean.