Jcd.BitManipulation

A bit manipulation readability enhancement library.

Jcd.BitManipulation

Jcd.BitManipulation.Algorithms.UInt64AlgorithmsExtensions

UInt64AlgorithmsExtensions.RotateRight(this ulong, int) Method

Performs a bitwise right rotation on a number.

public static ulong RotateRight(this ulong number, int count);

Parameters

number System.UInt64

The number to rotate

count System.Int32

the number of bits to rotate

Returns

System.UInt64 The rotated value.

Example

var rotationBase = sizeof(int)-5;

ulong b = 0b11110000_00000000_00000000_00000000_00000000_00000000_00000000_00000000;

var b2 = b.RotateRight(rotationBase+0); // b2 = 0b00000000_00000000_00000000_00000000_00000000_00000000_00000000_00011110
var b3 = b.RotateRight(rotationBase+1); // b3 = 0b00000000_00000000_00000000_00000000_00000000_00000000_00000000_00001111
var b4 = b.RotateRight(rotationBase+2); // b4 = 0b10000000_00000000_00000000_00000000_00000000_00000000_00000000_00000111
var b5 = b.RotateRight(rotationBase+3); // b5 = 0b11000000_00000000_00000000_00000000_00000000_00000000_00000000_00000011
var b6 = b.RotateRight(rotationBase+4); // b6 = 0b11100000_00000000_00000000_00000000_00000000_00000000_00000000_00000001
var b7 = b.RotateRight(rotationBase+5); // b7 = 0b11110000_00000000_00000000_00000000_00000000_00000000_00000000_00000000