Int128.INumberBase<Int128>.MultiplyAddEstimate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.