Table of Contents

Method IsFinite

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

IsFinite(float)

Determines if a element is finite. It contains zero, subnormal, and normal. It does not contain infinity, NaN (确定元素是否为有限值. 它包含 零、次正规数、正规数. 它不含无穷大、非数).

public static bool IsFinite(float value)

Parameters

value float

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

Returns

bool

Return true if value is finite, otherwise is false (如果值是有限的,则返回 true,否则返回 false).

See Also
IsFinite(TSelf)

IsFinite(double)

Determines if a element is finite. It contains zero, subnormal, and normal. It does not contain infinity, NaN (确定元素是否为有限值. 它包含 零、次正规数、正规数. 它不含无穷大、非数).

public static bool IsFinite(double value)

Parameters

value double

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

Returns

bool

Return true if value is finite, otherwise is false (如果值是有限的,则返回 true,否则返回 false).

See Also
IsFinite(TSelf)

IsFinite(Half)

Determines if a element is finite. It contains zero, subnormal, and normal. It does not contain infinity, NaN (确定元素是否为有限值. 它包含 零、次正规数、正规数. 它不含无穷大、非数).

public static bool IsFinite(Half value)

Parameters

value Half

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

Returns

bool

Return true if value is finite, otherwise is false (如果值是有限的,则返回 true,否则返回 false).

See Also
IsFinite(TSelf)