Method Minimum
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
Minimum<TOther>(TOther)
Returns the smaller one of the element in current PinSiteData object and the given value.
public PinSiteData<T> Minimum<TOther>(TOther value)
Parameters
value
TOtherThe value to compare.
Returns
- PinSiteData<T>
A new PinSiteData 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 PinSiteData object.
Minimum<TOther>(SiteData<TOther>)
Returns the smaller one of the element in current PinSiteData object and the given SiteData object.
public PinSiteData<T> Minimum<TOther>(SiteData<TOther> other)
Parameters
other
SiteData<TOther>The other SiteData<T> that contains the values to compare.
Returns
- PinSiteData<T>
A new PinSiteData 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 PinSiteData object.
Minimum<TOther>(PinSiteData<TOther>)
Returns the smaller one of the element in current PinSiteData object and the given PinSiteData object.
public PinSiteData<T> Minimum<TOther>(PinSiteData<TOther> other)
Parameters
other
PinSiteData<TOther>The other PinSiteData<T> that contains the values to compare.
Returns
- PinSiteData<T>
A new PinSiteData object that contains the smaller values.
Type Parameters
TOther
Remarks
This method can accept a PinSiteData 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 PinSiteData object being operated on.