Table of Contents

Method Maximum

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

Maximum<TOther>(TOther)

Returns the larger of the element in current SiteData object and the given value.

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

Parameters

value TOther

The value to compare.

Returns

SiteData<T>

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

Maximum<TOther>(SiteData<TOther>)

Returns the larger of the element in current SiteData object and the given SiteData object.

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

Parameters

other SiteData<TOther>

The other SiteData<T> that contains the values to compare.

Returns

SiteData<T>

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