Method Minimum
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
Minimum<TOther>(TOther)
Returns the smaller of the element in current SiteData object and the given value.
public SiteData<T> Minimum<TOther>(TOther value)
Parameters
value
TOtherThe value to compare.
Returns
- SiteData<T>
A new SiteData object that contains the smaller 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.
Minimum<TOther>(SiteData<TOther>)
Returns the smaller of the element in current SiteData object and the given SiteData object.
public SiteData<T> Minimum<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 smaller 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.