Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.Int64AlgorithmsExtensions

Int64AlgorithmsExtensions.AreOnlyFirstAndLastBitsSet(this long) Method

Determines if only the lowest bit and one other higher bit are set.

public static bool AreOnlyFirstAndLastBitsSet(this long number);

Parameters

number System.Int64

The number to evaluate.

Returns

System.Boolean true if the bitwise representation follows this pattern: 0b10..01. with any number of intervening zeros.

Example

long v = 0b0001;
Console.WriteLine($"{v.AreOnlyFirstAndLastBitsSet()}"); // outputs: True

v = 0b0011;
Console.WriteLine($"{v.AreOnlyFirstAndLastBitsSet()}"); // outputs: True

v = 0b0101;
Console.WriteLine($"{v.AreOnlyFirstAndLastBitsSet()}"); // outputs: True

v = 0b0111;
Console.WriteLine($"{v.AreOnlyFirstAndLastBitsSet()}"); // outputs: False