Table of Contents

Method BitwiseAnd

Namespace
NationalInstruments.SemiconductorTestLibrary.DataAbstraction
Assembly
NationalInstruments.SemiconductorTestLibrary.Abstractions.dll

BitwiseAnd<TOther>(TOther)

Performs a bitwise AND operation with a scalar, for each element across each site.

public SiteData<T> BitwiseAnd<TOther>(TOther value)

Parameters

value TOther

The scalar value.

Returns

SiteData<T>

A new SiteData object that contains result values.

Type Parameters

TOther

Remarks

This method can accept either a scalar or an array as the input value, but the value must be of the same underlying type, T, as the SiteData object. This method is supported only when the underlying data type of the SiteData object, T, is an integer type.

BitwiseAnd<TOther>(SiteData<TOther>)

Performs a bitwise AND operation with another SiteData object, for each element across each site.

public SiteData<T> BitwiseAnd<TOther>(SiteData<TOther> other)

Parameters

other SiteData<TOther>

The other SiteData object.

Returns

SiteData<T>

A new SiteData object that contains result values.

Type Parameters

TOther

Remarks

This method can accept a SiteData object of either a scalar or an array type as the input value, but the underlying type of the input value must be of the same underlying type, T, as the SiteData object being operated on. This method is supported only when the underlying data type of the SiteData object, T, is an integer type.