Table of Contents

Method YIsZero

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YIsZero(Vector256<float>)

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

public static Vector256<int> YIsZero(Vector256<float> value)

Parameters

value Vector256<float>

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

Returns

Vector256<int>

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

See Also

YIsZero(Vector256<double>)

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

public static Vector256<long> YIsZero(Vector256<double> value)

Parameters

value Vector256<double>

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

Returns

Vector256<long>

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

See Also

YIsZero(Vector256<sbyte>)

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

[CLSCompliant(false)]
public static Vector256<sbyte> YIsZero(Vector256<sbyte> value)

Parameters

value Vector256<sbyte>

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

Returns

Vector256<sbyte>

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

See Also

YIsZero(Vector256<byte>)

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

public static Vector256<byte> YIsZero(Vector256<byte> value)

Parameters

value Vector256<byte>

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

Returns

Vector256<byte>

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

See Also

YIsZero(Vector256<short>)

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

public static Vector256<short> YIsZero(Vector256<short> value)

Parameters

value Vector256<short>

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

Returns

Vector256<short>

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

See Also

YIsZero(Vector256<ushort>)

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

[CLSCompliant(false)]
public static Vector256<ushort> YIsZero(Vector256<ushort> value)

Parameters

value Vector256<ushort>

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

Returns

Vector256<ushort>

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

See Also

YIsZero(Vector256<int>)

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

public static Vector256<int> YIsZero(Vector256<int> value)

Parameters

value Vector256<int>

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

Returns

Vector256<int>

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

See Also

YIsZero(Vector256<uint>)

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

[CLSCompliant(false)]
public static Vector256<uint> YIsZero(Vector256<uint> value)

Parameters

value Vector256<uint>

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

Returns

Vector256<uint>

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

See Also

YIsZero(Vector256<long>)

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

public static Vector256<long> YIsZero(Vector256<long> value)

Parameters

value Vector256<long>

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

Returns

Vector256<long>

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

See Also

YIsZero(Vector256<ulong>)

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

[CLSCompliant(false)]
public static Vector256<ulong> YIsZero(Vector256<ulong> value)

Parameters

value Vector256<ulong>

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

Returns

Vector256<ulong>

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

See Also