Table of Contents

Method IsNotNaN

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

IsNotNaN(float)

Determines if a element is not NaN (确定元素是否不为非数).

public static bool IsNotNaN(float value)

Parameters

value float

The value to be checked (要检查的值).

Returns

bool

Return true if value is NaN, otherwise is false (如果值不为非数,则返回 true,否则返回 false).

See Also
IsNaN(TSelf)

IsNotNaN(double)

Determines if a element is not NaN (确定元素是否不为非数).

public static bool IsNotNaN(double value)

Parameters

value double

The value to be checked (要检查的值).

Returns

bool

Return true if value is NaN, otherwise is false (如果值不为非数,则返回 true,否则返回 false).

See Also
IsNaN(TSelf)

IsNotNaN(Half)

Determines if a element is not NaN (确定元素是否不为非数).

public static bool IsNotNaN(Half value)

Parameters

value Half

The value to be checked (要检查的值).

Returns

bool

Return true if value is NaN, otherwise is false (如果值不为非数,则返回 true,否则返回 false).

See Also
IsNaN(TSelf)