BitwiseExtensions Class
Bitwise extensions to unsigned integer types.
Namespace
RandN.Implementation
Base Types
  • object
BitwiseExtensions
object

Syntax

public static class BitwiseExtensions

Methods

NameReturn ValueSummary
CombineWithLow(uint, uint)ulong
Combines high and low into a ulong.
static
IsolateHigh(ulong)uint
Isolates and returns the 32 high bits of original.
static
IsolateLow(ulong)uint
Isolates and returns the 32 low bits of original.
static
RotateLeft(uint, int)uint
Rotates original amount to the left.
static
RotateRight(uint, int)uint
Rotates original amount to the right.
static