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
floatThe value to be checked (要检查的值).
Returns
- bool
Return
true
if value is finite, otherwise isfalse
(如果值是有限的,则返回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
doubleThe value to be checked (要检查的值).
Returns
- bool
Return
true
if value is finite, otherwise isfalse
(如果值是有限的,则返回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
HalfThe value to be checked (要检查的值).
Returns
- bool
Return
true
if value is finite, otherwise isfalse
(如果值是有限的,则返回true
,否则返回false
).
- See Also
-
IsFinite(TSelf)