Table of Contents

Method YIsZero

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

YIsZero(Vector<double>)

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

public override Vector<long> YIsZero(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 zero (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为零).

See Also

YIsZero(Vector<long>)

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

public override Vector<long> YIsZero(Vector<long> value)

Parameters

value Vector<long>

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 zero (一个向量,其元素是全位为1或0,取决于value的对应元素中是否为零).

See Also

YIsZero(Vector<ulong>)

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

[CLSCompliant(false)]
public override Vector<ulong> YIsZero(Vector<ulong> value)

Parameters

value Vector<ulong>

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

Returns

Vector<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