feat:node-modules
This commit is contained in:
45
node_modules/mathjs/lib/cjs/function/bitwise/bitNot.js
generated
vendored
Normal file
45
node_modules/mathjs/lib/cjs/function/bitwise/bitNot.js
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.createBitNot = void 0;
|
||||
var _bitwise = require("../../utils/bignumber/bitwise.js");
|
||||
var _collection = require("../../utils/collection.js");
|
||||
var _factory = require("../../utils/factory.js");
|
||||
var _index = require("../../plain/number/index.js");
|
||||
const name = 'bitNot';
|
||||
const dependencies = ['typed'];
|
||||
const createBitNot = exports.createBitNot = /* #__PURE__ */(0, _factory.factory)(name, dependencies, _ref => {
|
||||
let {
|
||||
typed
|
||||
} = _ref;
|
||||
/**
|
||||
* Bitwise NOT value, `~x`.
|
||||
* For matrices, the function is evaluated element wise.
|
||||
* For units, the function is evaluated on the best prefix base.
|
||||
*
|
||||
* Syntax:
|
||||
*
|
||||
* math.bitNot(x)
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* math.bitNot(1) // returns number -2
|
||||
*
|
||||
* math.bitNot([2, -3, 4]) // returns Array [-3, 2, -5]
|
||||
*
|
||||
* See also:
|
||||
*
|
||||
* bitAnd, bitOr, bitXor, leftShift, rightArithShift, rightLogShift
|
||||
*
|
||||
* @param {number | BigNumber | bigint | Array | Matrix} x Value to not
|
||||
* @return {number | BigNumber | bigint | Array | Matrix} NOT of `x`
|
||||
*/
|
||||
return typed(name, {
|
||||
number: _index.bitNotNumber,
|
||||
BigNumber: _bitwise.bitNotBigNumber,
|
||||
bigint: x => ~x,
|
||||
'Array | Matrix': typed.referToSelf(self => x => (0, _collection.deepMap)(x, self))
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user