Table of Contents

Method YIsPositive

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YIsPositive(Vector512<float>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

public static Vector512<int> YIsPositive(Vector512<float> value)

Parameters

value Vector512<float>

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

Returns

Vector512<int>

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

See Also

YIsPositive(Vector512<double>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

public static Vector512<long> YIsPositive(Vector512<double> value)

Parameters

value Vector512<double>

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

Returns

Vector512<long>

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

See Also

YIsPositive(Vector512<sbyte>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

[CLSCompliant(false)]
public static Vector512<sbyte> YIsPositive(Vector512<sbyte> value)

Parameters

value Vector512<sbyte>

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

Returns

Vector512<sbyte>

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

See Also

YIsPositive(Vector512<short>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

public static Vector512<short> YIsPositive(Vector512<short> value)

Parameters

value Vector512<short>

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

Returns

Vector512<short>

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

See Also

YIsPositive(Vector512<int>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

public static Vector512<int> YIsPositive(Vector512<int> value)

Parameters

value Vector512<int>

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

Returns

Vector512<int>

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

See Also

YIsPositive(Vector512<long>)

Determines if a element represents zero or a positive number (确定元素是否为零或正数). Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i])).

public static Vector512<long> YIsPositive(Vector512<long> value)

Parameters

value Vector512<long>

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

Returns

Vector512<long>

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

See Also