Table of Contents

Method Add

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

Add<TOther>(TOther)

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

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

Parameters

value TOther

The scalar value to be added.

Returns

SiteData<T>

A new SiteData object that contains the sum of the addition.

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.

Add<TOther>(SiteData<TOther>)

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

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

Parameters

other SiteData<TOther>

The other SiteData<T> to be added.

Returns

SiteData<T>

A new SiteData object that contains the sum of the addition.

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.