Multiplies a
BigFloat value by an integer.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat operator *(
int left,
BigFloat right
)
Public Shared Operator * (
left As Integer,
right As BigFloat
) As BigFloat
public:
static BigFloat^ operator *(
int left,
BigFloat^ right
)
static let inline (*)
left : int *
right : BigFloat : BigFloat
Parameters
- left
- Type: SystemInt32
An integer. - right
- Type: Extreme.MathematicsBigFloat
A BigFloat value.
Return Value
Type:
BigFloatThe product of
left and
right.
The result has the same relative precision as right.
Reference