Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.UInt16AlgorithmsExtensions

UInt16AlgorithmsExtensions.CountLeadingZeros(this ushort) Method

Computes the number of sequentially zeroed bits occupying the most significant bit positions.

public static int CountLeadingZeros(this ushort number);

Parameters

number System.UInt16

The number to evaluate.

Returns

System.Int32 The count of sequentially zeroed bits occupying the most significant bit positions.

Example

ushort v = 0x7FFF;
Console.WriteLine($"{v.CountLeadingZeros()}"); // outputs: 1

v = 0x3FFF;
Console.WriteLine($"{v.CountLeadingZeros()}"); // outputs: 2

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