integer->bitTest
Tests a bit.
Target
Signature
1integer->bitTest(i::integer)Tests a bit.
integer->bitTest is called with member syntax on a receiver value. integer->bitTest is part of numeric expression work. Be deliberate about integer versus decimal inputs because several math helpers preserve or infer the result type from their arguments.
Parameters
i- Required value of type
integer. Supplyipositionally unless the signature shows a keyword form.
Examples
Basic call
1integer(4)->bitTest(3)The example keeps numeric inputs explicit so integer and decimal behavior remain visible.