Click or drag to resize

DoubleInfo Structure

Contains information on the stored represenation of a double value.

Namespace:  Meta.Numerics.Extended
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public struct DoubleInfo

The DoubleInfo type exposes the following members.

Constructors
  NameDescription
Public methodDoubleInfo
Initializes a new double info object for the given double value.
Top
Properties
  NameDescription
Public propertyBits
Gets the internal representation of the floating point value.
Public propertyExponent
Gets the base-2 exponent of the floating point value.
Public propertyIsFinite
Gets a value indicating whether the floating point value is a finite number.
Public propertyIsInfinite
Gets a value indicating whether the value is infinite.
Public propertyIsNaN
Gets a value indicating whether the value is not-a-number.
Public propertyIsNegative
Gets a value indicating whether the number is negative.
Public propertyIsSubnormal
Gets a value indicating whether the floating point value is sub-normal.
Public propertyIsZero
Gets a value indicating whether the floating point value is zero.
Public propertyMantissa
Gets the mantissa of the floating point value.
Public propertyNext
Gets the next higher floating point value.
Public propertyPrevious
Gets the next lower floating point value.
Public propertyValue
Gets the double value.
Top
Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Overrides ValueTypeToString.)
Top
See Also