bit_and
Returns the bitwise AND of two numbers.
Returns the bitwise AND of two numbers.
Returns the number of set bits (population count) in n within specified width.
Extracts bits from n in the range [low, high] inclusive.
Flip (toggle) the bit at position pos of the number n (0 becomes 1, 1 becomes 0).
Formats a number (decimal, hex string, or binary string) to specified output format.
Return the bit at position pos of the number n (in binary).
Inserts val into n at bit positions [low, high] inclusive.
Creates a bitmask with bits set in the range [low, high] inclusive.
Returns the bitwise NOT of n, masked to the minimal bit width needed to represent n, or specified width.
Returns the bitwise OR of two numbers.