Table of Contents

Method YIsNegativeZero

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YIsNegativeZero(Vector<float>)

Determines if a element represents a negative zero (确定元素是否为负零). Mnemonic: rt[i] := to_mask(isNegativeZero(value[i])).

public static Vector<int> YIsNegativeZero(Vector<float> value)

Parameters

value Vector<float>

The vectors that will be checked (将进行检查的向量).

Returns

Vector<int>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in value were is finite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为有限的).

See Also

YIsNegativeZero(Vector<double>)

Determines if a element represents a negative zero (确定元素是否为负零). Mnemonic: rt[i] := to_mask(isNegativeZero(value[i])).

public static Vector<long> YIsNegativeZero(Vector<double> value)

Parameters

value Vector<double>

The vectors that will be checked (将进行检查的向量).

Returns

Vector<long>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in value were is finite (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为有限的).

See Also