Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.Int16AlgorithmsExtensions

Int16AlgorithmsExtensions.PopCount(this short) Method

Counts the bits that are set to 1 in a number.

public static int PopCount(this short number);

Parameters

number System.Int16

The number to evaluate.

Returns

System.Int32 The count of the bits set to 1.

Example

var v = short.MaxValue;
Console.WriteLine($"{v.PopCount()} bits are set."); // outputs: 15 bits are set.

Remarks

This is an alias for CountBitsSet(this short).