Fix64M Structure

Represents a decimal fixed-point number that cannot overflow.

Definition

Namespace: Jodosoft.Numerics.Clamped
Assembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
[SerializableAttribute]
public readonly struct Fix64M : INumericExtended<Fix64M>, 
	INumeric<Fix64M>, IComparable, IComparable<Fix64M>, 
	IEquatable<Fix64M>, IFormattable, IProvider<IBinaryIO<Fix64M>>, 
	IProvider<IConvert<Fix64M>>, IProvider<IMath<Fix64M>>, 
	IProvider<INumericBitConverter<Fix64M>>, IProvider<INumericRandom<Fix64M>>, 
	IProvider<INumericStatic<Fix64M>>, IProvider<IVariantRandom<Fix64M>>, 
	ISerializable, IConvertible, IProvider<IConvertExtended<Fix64M>>
Inheritance
Object    ValueType    Fix64M
Implements
INumericFix64M, INumericExtendedFix64M, IProviderIBinaryIOFix64M, IProviderIConvertFix64M, IProviderIMathFix64M, IProviderINumericBitConverterFix64M, IProviderINumericRandomFix64M, IProviderINumericStaticFix64M, IProviderIVariantRandomFix64M, IProviderIConvertExtendedFix64M, IComparable, IComparableFix64M, IConvertible, IEquatableFix64M, IFormattable, ISerializable

Methods

Operators

Fields

Extension Methods

ToTypeDefault Converts the value of this instance to an Object of the specified Type by calling one of the named conversions from IConvertible, such as ToChar(IFormatProvider) or ToDouble(IFormatProvider).
(Defined by ConvertibleExtensions)

Explicit Interface Implementations

IConvertibleGetTypeCodeReturns the TypeCode for this instance.
IConvertibleToBooleanConverts the value of this instance to an equivalent Boolean value using the specified culture-specific formatting information.
IConvertibleToByteConverts the value of this instance to an equivalent 8-bit unsigned integer using the specified culture-specific formatting information.
IConvertibleToCharConverts the value of this instance to an equivalent Unicode character using the specified culture-specific formatting information.
IConvertibleToDateTimeConverts the value of this instance to an equivalent DateTime using the specified culture-specific formatting information.
IConvertibleToDecimalConverts the value of this instance to an equivalent Decimal number using the specified culture-specific formatting information.
IConvertibleToDoubleConverts the value of this instance to an equivalent double-precision floating-point number using the specified culture-specific formatting information.
IConvertibleToInt16Converts the value of this instance to an equivalent 16-bit signed integer using the specified culture-specific formatting information.
IConvertibleToInt32Converts the value of this instance to an equivalent 32-bit signed integer using the specified culture-specific formatting information.
IConvertibleToInt64Converts the value of this instance to an equivalent 64-bit signed integer using the specified culture-specific formatting information.
IConvertibleToSByteConverts the value of this instance to an equivalent 8-bit signed integer using the specified culture-specific formatting information.
IConvertibleToSingleConverts the value of this instance to an equivalent single-precision floating-point number using the specified culture-specific formatting information.
IConvertibleToTypeConverts the value of this instance to an Object of the specified Type that has an equivalent value, using the specified culture-specific formatting information.
IConvertibleToUInt16Converts the value of this instance to an equivalent 16-bit unsigned integer using the specified culture-specific formatting information.
IConvertibleToUInt32Converts the value of this instance to an equivalent 32-bit unsigned integer using the specified culture-specific formatting information.
IConvertibleToUInt64Converts the value of this instance to an equivalent 64-bit unsigned integer using the specified culture-specific formatting information.
INumericFix64MAdd Computes the sum of the current value and the specified value.
INumericFix64MBitwiseComplement Produces a bitwise complement of the current value by reversing each bit.
INumericFix64MDivide Divides the current value by the specified value.
INumericFix64MIsGreaterThan Determines whether the current value is greater than the specified value.
INumericFix64MIsGreaterThanOrEqualTo Determines whether the current value is greater than or equal to the specified value.
INumericFix64MIsLessThan Determines whether the current value is less than the specified value.
INumericFix64MIsLessThanOrEqualTo Determines whether the current value is less than or equal to the specified value.
INumericFix64MLeftShift

Shifts the current value left by the specified number of bits.

Discards the high-order bits that are outside the range of the result type and sets the low-order empty bit positions to zero.

INumericFix64MLogicalAnd Computes the bitwise logical AND of the current value and the specified value.
INumericFix64MLogicalExclusiveOr Computes the bitwise logical exclusive OR, also known as the bitwise logical XOR, of the current value and the specified value.
INumericFix64MLogicalOr Computes the bitwise logical OR of the current value and the specified value.
INumericFix64MMultiply Computes the product of the current value and the specified value.
INumericFix64MNegative Computes the numeric negation of the current value.
INumericFix64MPositive Returns the current value.
INumericFix64MRemainder Computes the remainder after dividing the current value by the specified value.
INumericFix64MRightShift

Shifts the current value right by the specified number of bits.

Performs an signed (arithmetic) shift if TSelf is signed; otherwise sets the high-order bits to zero. Discards the low-order bits.

INumericFix64MSubtract Subtracts the specified value from the current value.
IProviderIConvertFix64MGetInstance Returns an instance of T.
IProviderIConvertExtendedFix64MGetInstance Returns an instance of T.
IProviderIMathFix64MGetInstance Returns an instance of T.
IProviderINumericBitConverterFix64MGetInstance Returns an instance of T.
IProviderINumericRandomFix64MGetInstance Returns an instance of T.
IProviderINumericStaticFix64MGetInstance Returns an instance of T.
IProviderIBinaryIOFix64MGetInstance Returns an instance of T.
IProviderIVariantRandomFix64MGetInstance Returns an instance of T.
ISerializableGetObjectDataPopulates a SerializationInfo with the data needed to serialize the target object.

See Also