Class SByteExtensions
Numeric-related extension methods for
Inheritance
Namespace: X10D.Numerics
Assembly: X10D.dll
Syntax
public static class SByteExtensions : object
Methods
| Improve this Doc View SourcePopCount(SByte)
Returns the population count (number of bits set) of a mask.
Declaration
public static int PopCount(this sbyte value)
Parameters
Type | Name | Description |
---|---|---|
System.SByte | 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(SByte, Int32)
Rotates the current value left by the specified number of bits.
Declaration
public static sbyte RotateLeft(this sbyte value, int count)
Parameters
Type | Name | Description |
---|---|---|
System.SByte | value | The value to rotate. |
System.Int32 | count | The number of bits by which to rotate. Any value outside the range [0..7] is treated as congruent mod 8. |
Returns
Type | Description |
---|---|
System.SByte | The rotated value. |
RotateRight(SByte, Int32)
Rotates the current value right by the specified number of bits.
Declaration
public static sbyte RotateRight(this sbyte value, int count)
Parameters
Type | Name | Description |
---|---|---|
System.SByte | value | The value to rotate. |
System.Int32 | count | The number of bits by which to rotate. Any value outside the range [0..7] is treated as congruent mod 8. |
Returns
Type | Description |
---|---|
System.SByte | The rotated value. |
RoundUpToPowerOf2(SByte)
Rounds the current value up to a power of two.
Declaration
public static sbyte RoundUpToPowerOf2(this sbyte value)
Parameters
Type | Name | Description |
---|---|---|
System.SByte | value | The value to round. |
Returns
Type | Description |
---|---|
System.SByte | The smallest power of two that's greater than or equal to |