Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.UInt64AlgorithmsExtensions

UInt64AlgorithmsExtensions.CountBitsSet(this ulong) Method

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

public static int CountBitsSet(this ulong number);

Parameters

number System.UInt64

The number to evaluate.

Returns

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

Example

var v = ulong.MaxValue;
Console.WriteLine($"{v.CountBitsSet()} bits are set."); // outputs: 64 bits are set.

Remarks

This is a reader-friendly alias for PopCount(this ulong).