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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.