Checks if the bit at the specified position is on (1).
This function performs a bitwise AND operation to check if the bit at the kth position is set to 1. It returns true if the bit is set, otherwise false.
k
1
true
false
true if the bit is on (1), otherwise false.
The number to check.
The position of the bit to check (0-indexed).
Generated using TypeDoc
Checks if the bit at the specified position is on (1).
This function performs a bitwise AND operation to check if the bit at the
k
th position is set to1
. It returnstrue
if the bit is set, otherwisefalse
.Returns
true
if the bit is on (1), otherwisefalse
.