Table of Contents

Method Multiply

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

Multiply(T)

Performs multiply operation on every element in current SiteData and the given value.

public SiteData<T> Multiply(T value)

Parameters

value T

The multiplier.

Returns

SiteData<T>

A new SiteData that contains the multiply results.

Multiply(SiteData<T>)

Performs multiply operation on every element in current SiteData and the given SiteData.

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

Parameters

other SiteData<T>

The other SiteData<T> that contains multipliers.

Returns

SiteData<T>

A new SiteData that contains the multiply results.