Table of Contents

Method IsNegativeInfinity

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

IsNegativeInfinity(float)

Determines if a element is negative infinity (确定元素是否为负无穷大).

public static bool IsNegativeInfinity(float value)

Parameters

value float

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

Returns

bool

Return true if value is negative infinity, otherwise is false (如果值是负无穷大,则返回 true,否则返回 false).

See Also

IsNegativeInfinity(double)

Determines if a element is negative infinity (确定元素是否为负无穷大).

public static bool IsNegativeInfinity(double value)

Parameters

value double

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

Returns

bool

Return true if value is negative infinity, otherwise is false (如果值是负无穷大,则返回 true,否则返回 false).

See Also

IsNegativeInfinity(Half)

Determines if a element is negative infinity (确定元素是否为负无穷大).

public static bool IsNegativeInfinity(Half value)

Parameters

value Half

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

Returns

bool

Return true if value is negative infinity, otherwise is false (如果值是负无穷大,则返回 true,否则返回 false).

See Also