Table of Contents

Method IsZeroOrSubnormal

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

IsZeroOrSubnormal(float)

Determines if a element is subnormal (确定元素是否为次正规数).

public static bool IsZeroOrSubnormal(float value)

Parameters

value float

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

Returns

bool

Return true if value is subnormal, otherwise is false (如果值是次正规数,则返回 true,否则返回 false).

IsZeroOrSubnormal(double)

Determines if a element is subnormal (确定元素是否为次正规数).

public static bool IsZeroOrSubnormal(double value)

Parameters

value double

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

Returns

bool

Return true if value is subnormal, otherwise is false (如果值是次正规数,则返回 true,否则返回 false).

IsZeroOrSubnormal(Half)

Determines if a element is subnormal (确定元素是否为次正规数).

public static bool IsZeroOrSubnormal(Half value)

Parameters

value Half

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

Returns

bool

Return true if value is subnormal, otherwise is false (如果值是次正规数,则返回 true,否则返回 false).