BigInteger: TestBit

TestBit

Tests a specific bit in the number to determine if it is set (1) or not (0).



 Public Function TestBit(
	  ByVal Bit As Long ) As Boolean

Parameters

Bit
[ByVal] Long. The bit to be tested.

Return Values

Boolean -  Returns True if the bit is set (1), False if it is not.

Remarks

The max value for bit is 2147483647. If the bit value is larger than the BigInteger instance, then the sign of the number is used. This will represent a negative number with infinite sign extension bits.

See Also

Project CorLib Overview

Class BigInteger Overview