Table of Contents

Method Add

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

Add(T)

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

public SiteData<T> Add(T value)

Parameters

value T

The scalar value to be added.

Returns

SiteData<T>

A new SiteData that contains the sum of the addition.

Add(SiteData<T>)

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

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

Parameters

other SiteData<T>

The other SiteData<T> to be added.

Returns

SiteData<T>

A new SiteData that contains the sum of the addition.