feat:node-modules
This commit is contained in:
38
node_modules/mathjs/lib/esm/function/arithmetic/multiplyScalar.js
generated
vendored
Normal file
38
node_modules/mathjs/lib/esm/function/arithmetic/multiplyScalar.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import { factory } from '../../utils/factory.js';
|
||||
import { multiplyNumber } from '../../plain/number/index.js';
|
||||
var name = 'multiplyScalar';
|
||||
var dependencies = ['typed'];
|
||||
export var createMultiplyScalar = /* #__PURE__ */factory(name, dependencies, _ref => {
|
||||
var {
|
||||
typed
|
||||
} = _ref;
|
||||
/**
|
||||
* Multiply two scalar values, `x * y`.
|
||||
* This function is meant for internal use: it is used by the public function
|
||||
* `multiply`
|
||||
*
|
||||
* This function does not support collections (Array or Matrix).
|
||||
*
|
||||
* @param {number | BigNumber | bigint | Fraction | Complex | Unit} x First value to multiply
|
||||
* @param {number | BigNumber | bigint | Fraction | Complex} y Second value to multiply
|
||||
* @return {number | BigNumber | bigint | Fraction | Complex | Unit} Multiplication of `x` and `y`
|
||||
* @private
|
||||
*/
|
||||
return typed('multiplyScalar', {
|
||||
'number, number': multiplyNumber,
|
||||
'Complex, Complex': function Complex_Complex(x, y) {
|
||||
return x.mul(y);
|
||||
},
|
||||
'BigNumber, BigNumber': function BigNumber_BigNumber(x, y) {
|
||||
return x.times(y);
|
||||
},
|
||||
'bigint, bigint': function bigint_bigint(x, y) {
|
||||
return x * y;
|
||||
},
|
||||
'Fraction, Fraction': function Fraction_Fraction(x, y) {
|
||||
return x.mul(y);
|
||||
},
|
||||
'number | Fraction | BigNumber | Complex, Unit': (x, y) => y.multiply(x),
|
||||
'Unit, number | Fraction | BigNumber | Complex | Unit': (x, y) => x.multiply(y)
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user