Table of Contents

Method Compare

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

Compare(ComparisonType, T)

Performs compare operation between every element in current PinSiteData and the given value.

public PinSiteData<bool> Compare(ComparisonType comparisonType, T value)

Parameters

comparisonType ComparisonType

The comparison type to use.

value T

The scalar value to compare to.

Returns

PinSiteData<bool>

A new PinSiteData that contains the compare results.

Compare(ComparisonType, SiteData<T>)

Performs compare operation between every element in current PinSiteData and the given SiteData.

public PinSiteData<bool> Compare(ComparisonType comparisonType, SiteData<T> other)

Parameters

comparisonType ComparisonType

The comparison type to use.

other SiteData<T>

The other SiteData<T> to compare to.

Returns

PinSiteData<bool>

A new PinSiteData that contains the compare results.

Compare(ComparisonType, PinSiteData<T>)

Performs compare operation between every element in current PinSiteData and the given PinSiteData.

public PinSiteData<bool> Compare(ComparisonType comparisonType, PinSiteData<T> other)

Parameters

comparisonType ComparisonType

The comparison type to use.

other PinSiteData<T>

The other PinSiteData<T> to compare to.

Returns

PinSiteData<bool>

A new PinSiteData that contains the compare results.