Table of Contents

Method BitwiseOr

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

BitwiseOr<TOther>(TOther)

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

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

Parameters

value TOther

The scalar value.

Returns

SiteData<T>

A new SiteData object that contains the 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.

BitwiseOr<TOther>(SiteData<TOther>)

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

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

Parameters

other SiteData<TOther>

The other SiteData object.

Returns

SiteData<T>

A new SiteData object that contains the 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.