Int128.INumberBase<Int128>.MultiplyAddEstimate Method

Definition

Computes an estimate of (left * right) + addend.

 static Int128 System.Numerics.INumberBase<System.Int128>.MultiplyAddEstimate(Int128 left, Int128 right, Int128 addend) = System::Numerics::INumberBase<Int128>::MultiplyAddEstimate;
static Int128 INumberBase<Int128>.MultiplyAddEstimate (Int128 left, Int128 right, Int128 addend);
static member System.Numerics.INumberBase<System.Int128>.MultiplyAddEstimate : Int128 * Int128 * Int128 -> Int128
 Shared Function MultiplyAddEstimate (left As Int128, right As Int128, addend As Int128) As Int128 Implements INumberBase(Of Int128).MultiplyAddEstimate

Parameters

left
Int128

The value to be multiplied with right.

right
Int128

The value to be multiplied with left.

addend
Int128

The value to be added to the result of left multiplied by right.

Returns

An estimate of (left * right) + addend.

Implements

Applies to