Int64.INumberBase<Int64>.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 long System.Numerics.INumberBase<System.Int64>.MultiplyAddEstimate(long left, long right, long addend) = System::Numerics::INumberBase<long>::MultiplyAddEstimate;
static long INumberBase<long>.MultiplyAddEstimate (long left, long right, long addend);
static member System.Numerics.INumberBase<System.Int64>.MultiplyAddEstimate : int64 * int64 * int64 -> int64
Shared Function MultiplyAddEstimate (left As Long, right As Long, addend As Long) As Long Implements INumberBase(Of Long).MultiplyAddEstimate
Parameters
- left
- Int64
The value to be multiplied with right
.
- right
- Int64
The value to be multiplied with left
.
- addend
- Int64
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, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.