TechTalk Genome v4.2

NullableDouble Equality Operator 

Compares two instances of NullableDouble for equivalence.

public static NullableBoolean operator ==(
   NullableDouble x,
   NullableDouble y
);

Parameters

x
A NullableDouble structure.
y
A NullableDouble structure.

Return Value

A NullableBoolean that is NullableBoolean.True if the two instances are equivalent or NullableBoolean.False if the two instances are not equivalent. If either instance of NullableDouble is Null, the NullableBoolean.Value of the NullableBoolean will be NullableBoolean.Null.

Remarks

This operator follows IEEE 754 specifications: if either operand is Double.NaN the result is false; negative and positive zero are considered equal; a Double.NegativeInfinity is considered equal to another Double.NegativeInfinity; a Double.PositiveInfinity is considered equal to another Double.PositiveInfinity.

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableDouble Class | TechTalk.Genome.NullableTypes Namespace