Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Bitwise AND operation - masks bits between two values
Technical Exegesis...
Bitwise AND operation - masks bits between two values. Performs AND on each bit position. Result bit is 1 only if both corresponding input bits are 1. Syntax is value1 BitAnd value2. Used for extracting specific bits, applying bit masks, or checking flags. Different from logical And which treats entire values as boolean.