Table of Contents

Method Add

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

Add(T)

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

public PinSiteData<T> Add(T value)

Parameters

value T

The scalar value to be added.

Returns

PinSiteData<T>

A new PinSiteData that contains the result of the addition.

Add(SiteData<T>)

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

public PinSiteData<T> Add(SiteData<T> other)

Parameters

other SiteData<T>

The other SiteData<T> to be added.

Returns

PinSiteData<T>

A new PinSiteData that contains the result of the addition.

Add(PinSiteData<T>)

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

public PinSiteData<T> Add(PinSiteData<T> other)

Parameters

other PinSiteData<T>

The other PinSiteData<T> to be added.

Returns

PinSiteData<T>

A new PinSiteData that contains the result of the addition.