Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.SByteAlgorithmsExtensions

SByteAlgorithmsExtensions.GetLowestBitSet(this sbyte) Method

Calculate the index of the lowest bit that’s been set.

public static int GetLowestBitSet(this sbyte number);

Parameters

number System.SByte

The number to evaluate.

Returns

System.Int32 The index of the lowest bit that’s been set; or -1 if none were set.

Example

sbyte v = 1;
Console.WriteLine($"{v.GetHighestBitSet()}"); // outputs: 0

v = 2;
Console.WriteLine($"{v.GetHighestBitSet()}"); // outputs: 1

v = 3;
Console.WriteLine($"{v.GetHighestBitSet()}"); // outputs: 1

v = 4;
Console.WriteLine($"{v.GetHighestBitSet()}"); // outputs: 2