Class UInt32Extensions
Numeric-related extension methods for
Inheritance
Namespace: X10D.Numerics
Assembly: X10D.dll
Syntax
public static class UInt32Extensions : object
Methods
| Improve this Doc View SourcePopCount(UInt32)
Returns the population count (number of bits set) of a mask.
Declaration
public static int PopCount(this uint value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | value | The mask. |
Returns
Type | Description |
---|---|
System.Int32 | The population count of |
Remarks
This method is similar in behavior to the x86 instruction POPCNT
RotateLeft(UInt32, Int32)
Rotates the current value left by the specified number of bits.
Declaration
public static uint RotateLeft(this uint value, int count)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | value | The value to rotate. |
System.Int32 | count | The number of bits by which to rotate. Any value outside the range [0..31] is treated as congruent mod 32. |
Returns
Type | Description |
---|---|
System.UInt32 | The rotated value. |
RotateRight(UInt32, Int32)
Rotates the current value right by the specified number of bits.
Declaration
public static uint RotateRight(this uint value, int count)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | value | The value to rotate. |
System.Int32 | count | The number of bits by which to rotate. Any value outside the range [0..31] is treated as congruent mod 32. |
Returns
Type | Description |
---|---|
System.UInt32 | The rotated value. |
RoundUpToPowerOf2(UInt32)
Rounds the current value up to a power of two.
Declaration
public static uint RoundUpToPowerOf2(this uint value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | value | The value to round. |
Returns
Type | Description |
---|---|
System.UInt32 | The smallest power of two that's greater than or equal to |