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 SiteData and the given value.

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

Parameters

comparisonType ComparisonType

The comparison type to use.

value T

The scalar value to compare.

Returns

SiteData<bool>

A new SiteData that contains the compare results.

Compare(ComparisonType, SiteData<T>)

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

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

Parameters

comparisonType ComparisonType

The comparison type to use.

other SiteData<T>

The other SiteData<T> to compare.

Returns

SiteData<bool>

A new SiteData that contains the compare results.