@eternl/big 0.10.16 → 0.10.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["declare namespace Big {\n type BigSource = number | string | bigint | Big;\n\n /**\n * GT = 1, EQ = 0, LT = -1\n */\n type Comparison = -1 | 0 | 1;\n\n /**\n * RoundDown = 0, RoundHalfUp = 1, RoundHalfEven = 2, RoundUp = 3\n */\n type RoundingMode = 0 | 1 | 2 | 3;\n\n interface BigConstructor {\n /**\n * Returns a new instance of a Big number object\n *\n * String values may be in exponential, as well as normal (non-exponential) notation.\n * There is no limit to the number of digits of a string value (other than that of Javascript's maximum array size), but the largest recommended exponent magnitude is 1e+6.\n * Infinity, NaN and hexadecimal literal strings, e.g. '0xff', are not valid.\n * String values in octal literal form will be interpreted as decimals, e.g. '011' is 11, not 9.\n *\n * @throws `NaN` on an invalid value.\n */\n new(value: BigSource): Big;\n\n /**\n * Returns a new instance of a Big number object\n *\n * String values may be in exponential, as well as normal (non-exponential) notation.\n * There is no limit to the number of digits of a string value (other than that of Javascript's maximum array size), but the largest recommended exponent magnitude is 1e+6.\n * Infinity, NaN and hexadecimal literal strings, e.g. '0xff', are not valid.\n * String values in octal literal form will be interpreted as decimals, e.g. '011' is 11, not 9.\n *\n * @throws `NaN` on an invalid value.\n */\n (value: BigSource): Big;\n\n /**\n * Create an additional Big number constructor\n *\n * Values created with the returned constructor will have a separate set of configuration values.\n * This can be used to create Big objects with different DP and RM values.\n * Big numbers created by different constructors can be used together in operations, and it is the DP and RM setting of the Big number that an operation is called upon that will apply.\n * In the interest of memory efficiency, all Big number constructors share the same prototype object,\n * so while the DP and RM (and other own properties) of a constructor are isolated and untouchable by another, its prototype methods are not.\n */\n (): BigConstructor;\n\n /**\n * The maximum number of decimal places of the results of operations involving division.\n * It is relevant only to the div and sqrt methods, and the pow method when the exponent is negative.\n *\n * 0 to 1e+6 inclusive\n * Default value: 20\n */\n DP: number;\n /**\n * The rounding mode used in the above operations and by round, toExponential, toFixed and toPrecision.\n * Default value: 1\n */\n RM: number;\n /**\n * The negative exponent value at and below which toString returns exponential notation.\n *\n * -1e+6 to 0 inclusive\n * Default value: -7\n */\n NE: number;\n /**\n * The positive exponent value at and above which toString returns exponential notation.\n *\n * 0 to 1e+6 inclusive\n * Default value: 21\n */\n PE: number;\n /**\n * When set to true, an error will be thrown if a primitive number is passed to the Big constructor,\n * or if valueOf is called, or if toNumber is called on a Big which cannot be converted to a primitive number without a loss of precision.\n *\n * true|false\n * Default value: false\n */\n strict: boolean;\n\n /** Readonly rounding modes */\n\n /**\n * Rounds towards zero.\n * I.e. truncate, no rounding.\n */\n readonly roundDown: 0;\n /**\n * Rounds towards nearest neighbour.\n * If equidistant, rounds away from zero.\n */\n readonly roundHalfUp: 1;\n /**\n * Rounds towards nearest neighbour.\n * If equidistant, rounds towards even neighbour.\n */\n readonly roundHalfEven: 2;\n /**\n * Rounds away from zero.\n */\n readonly roundUp: 3;\n\n readonly Big: BigConstructor;\n }\n\n interface Big {\n /** Returns a Big number whose value is the absolute value, i.e. the magnitude, of this Big number. */\n abs(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number plus n - alias for .plus().\n *\n * @throws `NaN` if n is invalid.\n */\n add(n: BigSource): Big;\n /**\n * Compare the values.\n *\n * @throws `NaN` if n is invalid.\n */\n cmp(n: BigSource): Comparison;\n /**\n * Returns a Big number whose value is the value of this Big number divided by n.\n *\n * If the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @throws `NaN` if n is invalid.\n * @throws `±Infinity` on division by zero.\n * @throws `NaN` on division of zero by zero.\n */\n div(n: BigSource): Big;\n /**\n * Returns true if the value of this Big equals the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n eq(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is greater than the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n gt(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is greater than or equal to the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n gte(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is less than the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n lt(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is less than or equal to the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n lte(n: BigSource): boolean;\n /**\n * Returns a Big number whose value is the value of this Big number minus n.\n *\n * @throws `NaN` if n is invalid.\n */\n minus(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number modulo n, i.e. the integer remainder of dividing this Big number by n.\n *\n * The result will have the same sign as this Big number, and it will match that of Javascript's % operator (within the limits of its precision) and BigDecimal's remainder method.\n *\n * @throws `NaN` if n is negative or otherwise invalid.\n */\n mod(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number times n - alias for .times().\n *\n * @throws `NaN` if n is invalid.\n */\n mul(n: BigSource): Big;\n /**\n * Return a new Big whose value is the value of this Big negated.\n */\n neg(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number plus n.\n *\n * @throws `NaN` if n is invalid.\n */\n plus(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number raised to the power exp.\n *\n * If exp is negative and the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @param exp The power to raise the number to, -1e+6 to 1e+6 inclusive\n * @throws `!pow!` if exp is invalid.\n *\n * Note: High value exponents may cause this method to be slow to return.\n */\n pow(exp: number): Big;\n /**\n * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd\n * significant digits using rounding mode rm, or Big.RM if rm is not specified.\n *\n * @param sd Significant digits: integer, 1 to MAX_DP inclusive.\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!prec!` if sd is invalid.\n * @throws `!Big.RM!` if rm is invalid.\n */\n prec(sd: number, rm?: RoundingMode): Big;\n /**\n * Returns a Big number whose value is the value of this Big number rounded using rounding mode rm to a maximum of dp decimal places.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!round!` if dp is invalid.\n * @throws `!Big.RM!` if rm is invalid.\n */\n round(dp?: number, rm?: RoundingMode): Big;\n /**\n * Returns a Big number whose value is the square root of this Big number.\n *\n * If the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @throws `NaN` if this Big number is negative.\n */\n sqrt(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number minus n - alias for .minus().\n *\n * @throws `NaN` if n is invalid.\n */\n sub(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number times n.\n *\n * @throws `NaN` if n is invalid.\n */\n times(n: BigSource): Big;\n /**\n * Returns a string representing the value of this Big number in exponential notation to a fixed number of decimal places dp.\n *\n * If the value of this Big number in exponential notation has more digits to the right of the decimal point than is specified by dp,\n * the return value will be rounded to dp decimal places using rounding mode Big.RM.\n *\n * If the value of this Big number in exponential notation has fewer digits to the right of the decimal point than is specified by dp, the return value will be appended with zeros accordingly.\n *\n * If dp is omitted, or is null or undefined, the number of digits after the decimal point defaults to the minimum number of digits necessary to represent the value exactly.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toFix!` if dp is invalid.\n */\n toExponential(dp?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number in normal notation to a fixed number of decimal places dp.\n *\n * If the value of this Big number in normal notation has more digits to the right of the decimal point than is specified by dp,\n * the return value will be rounded to dp decimal places using rounding mode Big.RM.\n *\n * If the value of this Big number in normal notation has fewer fraction digits then is specified by dp, the return value will be appended with zeros accordingly.\n *\n * Unlike Number.prototype.toFixed, which returns exponential notation if a number is greater or equal to 1021, this method will always return normal notation.\n *\n * If dp is omitted, or is null or undefined, then the return value is simply the value in normal notation.\n * This is also unlike Number.prototype.toFixed, which returns the value to zero decimal places.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toFix!` if dp is invalid.\n */\n toFixed(dp?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number to the specified number of significant digits sd.\n *\n * If the value of this Big number has more digits than is specified by sd, the return value will be rounded to sd significant digits using rounding mode Big.RM.\n *\n * If the value of this Big number has fewer digits than is specified by sd, the return value will be appended with zeros accordingly.\n *\n * If sd is less than the number of digits necessary to represent the integer part of the value in normal notation, then exponential notation is used.\n *\n * If sd is omitted, or is null or undefined, then the return value is the same as .toString().\n *\n * @param sd Significant digits, 1 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toPre!` if sd is invalid.\n */\n toPrecision(sd?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n toString(): string;\n /**\n * Returns a primitive number representing the value of this Big number.\n *\n * If Big.strict is true an error will be thrown if toNumber is called on a Big number which cannot be converted to a primitive number without a loss of precision.\n *\n * @since 6.0\n */\n toNumber(): number;\n /**\n * Returns a primitive bigint representing the value of this Big number.\n *\n * @throws if this Big number is not an integer.\n */\n toBigInt(): bigint;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n valueOf(): string;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n toJSON(): string;\n /**\n * Returns an array of single digits\n */\n c: number[];\n /**\n * Returns the exponent, Integer, -1e+6 to 1e+6 inclusive\n */\n e: number;\n /**\n * Returns the sign, -1 or 1\n */\n s: number;\n }\n}\n\ntype Big = Big.Big\ntype BigConstructor = Big.BigConstructor\n\nexport type BigSource = Big.BigSource\nexport type Comparison = Big.Comparison\nexport type RoundingMode = Big.RoundingMode\nexport type BigInstance = Big\n\ntype InternalSign = 1 | -1\ntype InternalDigits = number[]\ntype InternalSource = BigSource | InternalBig\n\ninterface InternalBig extends InternalBigProto {\n c: InternalDigits\n e: number\n s: InternalSign\n constructor: InternalBigConstructor\n}\n\ninterface InternalBigConstructor {\n (): InternalBigConstructor\n (value: InternalSource): InternalBig\n new (value: InternalSource): InternalBig\n DP: number\n RM: RoundingMode\n NE: number\n PE: number\n strict: boolean\n roundDown: 0\n roundHalfUp: 1\n roundHalfEven: 2\n roundUp: 3\n prototype: InternalBigProto\n}\n\ninterface InternalBigProto {\n abs(this: InternalBig): InternalBig\n cmp(this: InternalBig, y: InternalSource): Comparison\n div(this: InternalBig, y: InternalSource): InternalBig\n eq(this: InternalBig, y: InternalSource): boolean\n gt(this: InternalBig, y: InternalSource): boolean\n gte(this: InternalBig, y: InternalSource): boolean\n lt(this: InternalBig, y: InternalSource): boolean\n lte(this: InternalBig, y: InternalSource): boolean\n minus(this: InternalBig, y: InternalSource): InternalBig\n sub(this: InternalBig, y: InternalSource): InternalBig\n mod(this: InternalBig, y: InternalSource): InternalBig\n neg(this: InternalBig): InternalBig\n plus(this: InternalBig, y: InternalSource): InternalBig\n add(this: InternalBig, y: InternalSource): InternalBig\n pow(this: InternalBig, n: number): InternalBig\n prec(this: InternalBig, sd: number, rm?: RoundingMode): InternalBig\n round(this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig\n sqrt(this: InternalBig): InternalBig\n times(this: InternalBig, y: InternalSource): InternalBig\n mul(this: InternalBig, y: InternalSource): InternalBig\n toExponential(this: InternalBig, dp?: number, rm?: RoundingMode): string\n toFixed(this: InternalBig, dp?: number, rm?: RoundingMode): string\n toJSON(this: InternalBig): string\n toString(this: InternalBig): string\n toNumber(this: InternalBig): number\n toBigInt(this: InternalBig): bigint\n toPrecision(this: InternalBig, sd?: number, rm?: RoundingMode): string\n valueOf(this: InternalBig): string\n [symbolKey: symbol]: ((this: InternalBig) => string) | undefined\n}\n\n/*\n * big.js v7.0.1\n * A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.\n * Copyright (c) 2025 Michael Mclaughlin\n * https://github.com/MikeMcl/big.js/LICENCE.md\n */\n\n\n/************************************** EDITABLE DEFAULTS *****************************************/\n\n\n // The default values below must be integers within the stated ranges.\n\n /*\n * The maximum number of decimal places (DP) of the results of operations involving division:\n * div and sqrt, and pow with negative exponents.\n */\nvar DP = 20, // 0 to MAX_DP\n\n /*\n * The rounding mode (RM) used when rounding to the above decimal places.\n *\n * 0 Towards zero (i.e. truncate, no rounding). (ROUND_DOWN)\n * 1 To nearest neighbour. If equidistant, round up. (ROUND_HALF_UP)\n * 2 To nearest neighbour. If equidistant, to even. (ROUND_HALF_EVEN)\n * 3 Away from zero. (ROUND_UP)\n */\n RM = 1 as RoundingMode, // 0, 1, 2 or 3\n\n // The maximum value of DP and Big.DP.\n MAX_DP = 1E6, // 0 to 1000000\n\n // The maximum magnitude of the exponent argument to the pow method.\n MAX_POWER = 1E6, // 1 to 1000000\n\n /*\n * The negative exponent (NE) at and beneath which toString returns exponential notation.\n * (JavaScript numbers: -7)\n * -1000000 is the minimum recommended exponent value of a Big.\n */\n NE = -7, // 0 to -1000000\n\n /*\n * The positive exponent (PE) at and above which toString returns exponential notation.\n * (JavaScript numbers: 21)\n * 1000000 is the maximum recommended exponent value of a Big, but this limit is not enforced.\n */\n PE = 21, // 0 to 1000000\n\n /*\n * When true, an error will be thrown if a primitive number is passed to the Big constructor,\n * or if valueOf is called, or if toNumber is called on a Big which cannot be converted to a\n * primitive number without a loss of precision.\n */\n STRICT = false, // true or false\n\n\n/**************************************************************************************************/\n\n\n // Error messages.\n NAME = '[big.js] ',\n INVALID = NAME + 'Invalid ',\n INVALID_DP = INVALID + 'decimal places',\n INVALID_RM = INVALID + 'rounding mode',\n DIV_BY_ZERO = NAME + 'Division by zero',\n\n // The shared prototype object.\n P = {} as unknown as InternalBigProto,\n UNDEFINED = void 0,\n NUMERIC = /^-?(\\d+(\\.\\d*)?|\\.\\d+)(e[+-]?\\d+)?$/i;\n\n\n/*\n * Create and return a Big constructor.\n */\nfunction _Big_(): InternalBigConstructor {\n\n /*\n * The Big constructor and exported function.\n * Create and return a new instance of a Big number object.\n *\n * n {number|string|Big} A numeric value.\n */\n function Big(this: unknown, n?: InternalSource): InternalBig | InternalBigConstructor | void {\n const Ctor = Big as unknown as InternalBigConstructor\n const x = this as unknown\n\n // Enable constructor usage without new.\n if (!(x instanceof Ctor)) {\n return n === UNDEFINED && arguments.length === 0 ? _Big_() : new Ctor(n as InternalSource);\n }\n\n const instance = x as InternalBig\n\n // Duplicate.\n if (n instanceof Ctor) {\n instance.s = n.s;\n instance.e = n.e;\n instance.c = n.c.slice();\n } else {\n let value = n\n\n if (typeof value !== 'string') {\n if (Ctor.strict === true && typeof value !== 'bigint') {\n throw TypeError(INVALID + 'value');\n }\n\n // Minus zero?\n value = value === 0 && 1 / value < 0 ? '-0' : String(value);\n }\n\n parse(instance, value);\n }\n\n // Retain a reference to this Big constructor.\n // Shadow Big.prototype.constructor which points to Object.\n instance.constructor = Ctor;\n }\n\n const Ctor = Big as unknown as InternalBigConstructor\n\n Ctor.prototype = P;\n Ctor.DP = DP;\n Ctor.RM = RM;\n Ctor.NE = NE;\n Ctor.PE = PE;\n Ctor.strict = STRICT;\n Ctor.roundDown = 0;\n Ctor.roundHalfUp = 1;\n Ctor.roundHalfEven = 2;\n Ctor.roundUp = 3;\n\n return Ctor;\n}\n\nfunction negateSign(s: InternalSign): InternalSign {\n return s === 1 ? -1 : 1;\n}\n\n\n/*\n * Parse the number or string value passed to a Big constructor.\n *\n * x {Big} A Big number instance.\n * n {number|string} A numeric value.\n */\nfunction parse(x: InternalBig, n: string): InternalBig {\n var e, i, nl;\n\n if (!NUMERIC.test(n)) {\n throw Error(INVALID + 'number');\n }\n\n // Determine sign.\n x.s = n.charAt(0) == '-' ? (n = n.slice(1), -1) : 1;\n\n // Decimal point?\n if ((e = n.indexOf('.')) > -1) n = n.replace('.', '');\n\n // Exponential form?\n if ((i = n.search(/e/i)) > 0) {\n\n // Determine exponent.\n if (e < 0) e = i;\n e += +n.slice(i + 1);\n n = n.substring(0, i);\n } else if (e < 0) {\n\n // Integer.\n e = n.length;\n }\n\n nl = n.length;\n\n // Determine leading zeros.\n for (i = 0; i < nl && n.charAt(i) == '0';) ++i;\n\n if (i == nl) {\n\n // Zero.\n x.c = [x.e = 0];\n } else {\n\n // Determine trailing zeros.\n for (; nl > 0 && n.charAt(--nl) == '0';);\n x.e = e - i - 1;\n x.c = [];\n\n // Convert string to array of digits without leading/trailing zeros.\n for (e = 0; i <= nl;) x.c[e++] = +n.charAt(i++);\n }\n\n return x;\n}\n\n\n/*\n * Round Big x to a maximum of sd significant digits using rounding mode rm.\n *\n * x {Big} The Big to round.\n * sd {number} Significant digits: integer, 0 to MAX_DP inclusive.\n * rm {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * [more] {boolean} Whether the result of division was truncated.\n */\nfunction round(x: InternalBig, sd: number, rm?: RoundingMode, more?: boolean): InternalBig {\n var xc = x.c;\n var d0 = xc[0] ?? 0;\n\n if (rm === UNDEFINED) rm = x.constructor.RM;\n if (rm !== 0 && rm !== 1 && rm !== 2 && rm !== 3) {\n throw Error(INVALID_RM);\n }\n\n if (sd < 1) {\n more =\n rm === 3 && (more || !!xc[0]) || sd === 0 && (\n rm === 1 && d0 >= 5 ||\n rm === 2 && (d0 > 5 || d0 === 5 && (more || xc[1] !== UNDEFINED))\n );\n\n xc.length = 1;\n\n if (more) {\n\n // 1, 0.1, 0.01, 0.001, 0.0001 etc.\n x.e = x.e - sd + 1;\n xc[0] = 1;\n } else {\n\n // Zero.\n xc[0] = x.e = 0;\n }\n } else if (sd < xc.length) {\n d0 = xc[sd] ?? 0;\n\n // xc[sd] is the digit after the digit that may be rounded up.\n more =\n rm === 1 && d0 >= 5 ||\n rm === 2 && (d0 > 5 || d0 === 5 &&\n (more || xc[sd + 1] !== UNDEFINED || ((xc[sd - 1] ?? 0) & 1) === 1)) ||\n rm === 3 && (more || !!xc[0]);\n\n // Remove extra digits after the required precision.\n xc.length = sd;\n\n // Round up?\n if (more) {\n\n // Rounding up may mean the previous digit has to be rounded up.\n for (; ++(xc[--sd]!) > 9;) {\n xc[sd] = 0;\n if (sd === 0) {\n ++x.e;\n xc.unshift(1);\n break;\n }\n }\n }\n\n // Remove trailing zeros.\n for (sd = xc.length; !xc[--sd];) xc.pop();\n }\n\n return x;\n}\n\n\n/*\n * Return a string representing the value of Big x in normal or exponential notation.\n * Handles P.toExponential, P.toFixed, P.toJSON, P.toPrecision, P.toString and P.valueOf.\n */\nfunction stringify(x: InternalBig, doExponential: boolean, isNonzero: boolean): string {\n var e = x.e,\n s = x.c.join(''),\n n = s.length;\n\n // Exponential notation?\n if (doExponential) {\n s = s.charAt(0) + (n > 1 ? '.' + s.slice(1) : '') + (e < 0 ? 'e' : 'e+') + e;\n\n // Normal notation.\n } else if (e < 0) {\n for (; ++e;) s = '0' + s;\n s = '0.' + s;\n } else if (e > 0) {\n if (++e > n) {\n for (e -= n; e--;) s += '0';\n } else if (e < n) {\n s = s.slice(0, e) + '.' + s.slice(e);\n }\n } else if (n > 1) {\n s = s.charAt(0) + '.' + s.slice(1);\n }\n\n return x.s < 0 && isNonzero ? '-' + s : s;\n}\n\n\n// Prototype/instance methods\n\n\n/*\n * Return a new Big whose value is the absolute value of this Big.\n */\nP.abs = function (this: InternalBig) {\n var x = new this.constructor(this);\n x.s = 1;\n return x;\n};\n\n\n/*\n * Return 1 if the value of this Big is greater than the value of Big y,\n * -1 if the value of this Big is less than the value of Big y, or\n * 0 if they have the same value.\n */\nP.cmp = function (this: InternalBig, y: InternalSource): Comparison {\n var i, j,\n isneg,\n x = this,\n xc = x.c,\n yBig = new x.constructor(y),\n yc = yBig.c,\n xs = x.s,\n ys = yBig.s,\n k = x.e,\n l = yBig.e;\n\n // Either zero?\n if (!xc[0] || !yc[0]) return (!xc[0] ? !yc[0] ? 0 : negateSign(ys) : xs) as Comparison;\n\n // Signs differ?\n if (xs != ys) return xs as Comparison;\n\n isneg = xs < 0;\n\n // Compare exponents.\n if (k != l) return (((k > l ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n\n j = (k = xc.length) < (l = yc.length) ? k : l;\n\n // Compare digit by digit.\n for (i = -1; ++i < j;) {\n if (xc[i] != yc[i]) return (((xc[i]! > yc[i]! ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n }\n\n // Compare lengths.\n return (k == l ? 0 : ((k > l ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big divided by the value of Big y, rounded,\n * if necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.\n */\nP.div = function (this: InternalBig, y: InternalSource): InternalBig {\n var x = this,\n Big = x.constructor,\n a = x.c, // dividend\n yBig = new Big(y),\n b = yBig.c, // divisor\n sign: InternalSign = x.s == yBig.s ? 1 : -1,\n dp = Big.DP;\n\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n\n // Divisor is zero?\n if (!b[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n // Dividend is 0? Return +-0.\n if (!a[0]) {\n yBig.s = sign;\n yBig.c = [yBig.e = 0];\n return yBig;\n }\n\n var bl, bt, n, cmp, ri,\n bz = b.slice(),\n ai = bl = b.length,\n al = a.length,\n r = a.slice(0, bl) as Array<number | undefined>, // remainder\n rl = r.length,\n q = yBig, // quotient\n qc = q.c = [] as InternalDigits,\n qi = 0,\n p = dp + (q.e = x.e - yBig.e) + 1, // precision of the result\n k = p < 0 ? 0 : p;\n\n q.s = sign;\n\n // Create version of divisor with leading zero.\n bz.unshift(0);\n\n // Add zeros to make remainder as long as divisor.\n for (; rl++ < bl;) r.push(0);\n\n do {\n\n // n is how many times the divisor goes into current remainder.\n for (n = 0; n < 10; n++) {\n\n // Compare divisor and remainder.\n if (bl != (rl = r.length)) {\n cmp = bl > rl ? 1 : -1;\n } else {\n for (ri = -1, cmp = 0; ++ri < bl;) {\n if (b[ri] != r[ri]) {\n cmp = b[ri]! > r[ri]! ? 1 : -1;\n break;\n }\n }\n }\n\n // If divisor < remainder, subtract divisor from remainder.\n if (cmp < 0) {\n\n // Remainder can't be more than 1 digit longer than divisor.\n // Equalise lengths using divisor with extra leading zero?\n for (bt = rl == bl ? b : bz; rl;) {\n if (r[--rl]! < bt[rl]!) {\n ri = rl;\n for (; ri && !r[--ri];) r[ri] = 9;\n --r[ri]!;\n r[rl] = (r[rl] ?? 0) + 10;\n }\n r[rl] = (r[rl] ?? 0) - bt[rl]!;\n }\n\n for (; !r[0];) r.shift();\n } else {\n break;\n }\n }\n\n // Add the digit n to the result array.\n qc[qi++] = cmp ? n : ++n;\n\n // Update the remainder.\n if (r[0] && cmp) r[rl] = a[ai] || 0;\n else r = [a[ai]];\n\n } while ((ai++ < al || r[0] !== UNDEFINED) && k--);\n\n // Leading zero? Do not remove if result is simply zero (qi == 1).\n if (!qc[0] && qi != 1) {\n\n // There can't be more than one zero.\n qc.shift();\n q.e--;\n p--;\n }\n\n // Round?\n if (qi > p) round(q, p, Big.RM, r[0] !== UNDEFINED);\n\n return q;\n};\n\n\n/*\n * Return true if the value of this Big is equal to the value of Big y, otherwise return false.\n */\nP.eq = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) === 0;\n};\n\n\n/*\n * Return true if the value of this Big is greater than the value of Big y, otherwise return\n * false.\n */\nP.gt = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) > 0;\n};\n\n\n/*\n * Return true if the value of this Big is greater than or equal to the value of Big y, otherwise\n * return false.\n */\nP.gte = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) > -1;\n};\n\n\n/*\n * Return true if the value of this Big is less than the value of Big y, otherwise return false.\n */\nP.lt = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) < 0;\n};\n\n\n/*\n * Return true if the value of this Big is less than or equal to the value of Big y, otherwise\n * return false.\n */\nP.lte = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) < 1;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big minus the value of Big y.\n */\nP.minus = P.sub = function (this: InternalBig, y: InternalSource): InternalBig {\n var i, j, t, xlty,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n a = x.s,\n b = yBig.s;\n\n // Signs differ?\n if (a != b) {\n yBig.s = negateSign(b);\n return x.plus(yBig);\n }\n\n var xc = x.c.slice(),\n xe = x.e,\n yc = yBig.c,\n ye = yBig.e,\n aDiff = xe - ye;\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (yc[0]) {\n yBig.s = negateSign(b);\n } else if (xc[0]) {\n yBig = new Big(x);\n } else {\n yBig.s = 1;\n }\n return yBig;\n }\n\n // Determine which is the bigger number. Prepend zeros to equalise exponents.\n if (aDiff) {\n\n if (xlty = aDiff < 0) {\n aDiff = -aDiff;\n t = xc;\n } else {\n ye = xe;\n t = yc;\n }\n\n t.reverse();\n for (j = aDiff; j--;) t.push(0);\n t.reverse();\n } else {\n\n // Exponents equal. Check digit by digit.\n j = ((xlty = xc.length < yc.length) ? xc : yc).length;\n\n for (i = 0; i < j; i++) {\n if (xc[i] != yc[i]) {\n xlty = xc[i]! < yc[i]!;\n break;\n }\n }\n }\n\n // x < y? Point xc to the array of the bigger number.\n if (xlty) {\n t = xc;\n xc = yc;\n yc = t;\n yBig.s = negateSign(yBig.s);\n }\n\n /*\n * Append zeros to xc if shorter. No need to add zeros to yc if shorter as subtraction only\n * needs to start at yc.length.\n */\n if ((j = yc.length - (i = xc.length)) > 0) for (; j--;) xc[i++] = 0;\n\n // Subtract yc from xc.\n for (j = i; j > aDiff;) {\n if (xc[--j]! < (yc[j] ?? 0)) {\n for (i = j; i && !xc[--i];) xc[i] = 9;\n --xc[i]!;\n xc[j] = (xc[j] ?? 0) + 10;\n }\n\n xc[j] = (xc[j] ?? 0) - (yc[j] ?? 0);\n }\n\n // Remove trailing zeros.\n for (j = xc.length; xc[--j] === 0;) xc.pop();\n\n // Remove leading zeros and adjust exponent accordingly.\n for (; xc[0] === 0;) {\n xc.shift();\n --ye;\n }\n\n if (!xc[0]) {\n\n // n - n = +0\n yBig.s = 1;\n\n // Result must be zero.\n xc = [ye = 0];\n }\n\n yBig.c = xc;\n yBig.e = ye;\n\n return yBig;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big modulo the value of Big y.\n */\nP.mod = function (this: InternalBig, y: InternalSource): InternalBig {\n var ygtx,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n xSign = x.s,\n ySign = yBig.s,\n dp: number,\n rm: RoundingMode;\n\n if (!yBig.c[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n x.s = yBig.s = 1;\n ygtx = yBig.cmp(x) == 1;\n x.s = xSign;\n yBig.s = ySign;\n\n if (ygtx) return new Big(x);\n\n dp = Big.DP;\n rm = Big.RM;\n Big.DP = 0;\n Big.RM = 0;\n x = x.div(yBig);\n Big.DP = dp;\n Big.RM = rm;\n\n return this.minus(x.times(yBig));\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big negated.\n */\nP.neg = function (this: InternalBig): InternalBig {\n var x = new this.constructor(this);\n x.s = negateSign(x.s);\n return x;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big plus the value of Big y.\n */\nP.plus = P.add = function (this: InternalBig, y: InternalSource): InternalBig {\n var e, k, t,\n x = this,\n Big = x.constructor,\n yBig = new Big(y);\n\n // Signs differ?\n if (x.s != yBig.s) {\n yBig.s = negateSign(yBig.s);\n return x.minus(yBig);\n }\n\n var xe = x.e,\n xc = x.c,\n ye = yBig.e,\n yc = yBig.c;\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (!yc[0]) {\n if (xc[0]) {\n yBig = new Big(x);\n } else {\n yBig.s = x.s;\n }\n }\n return yBig;\n }\n\n xc = xc.slice();\n\n // Prepend zeros to equalise exponents.\n // Note: reverse faster than unshifts.\n if (e = xe - ye) {\n if (e > 0) {\n ye = xe;\n t = yc;\n } else {\n e = -e;\n t = xc;\n }\n\n t.reverse();\n for (; e--;) t.push(0);\n t.reverse();\n }\n\n // Point xc to the longer array.\n if (xc.length - yc.length < 0) {\n t = yc;\n yc = xc;\n xc = t;\n }\n\n // Only start adding at yc.length - 1 as the further digits of xc can be left as they are.\n for (k = 0, e = yc.length; e;) {\n --e;\n k = (xc[e] = (xc[e] ?? 0) + (yc[e] ?? 0) + k) / 10 | 0;\n xc[e]! %= 10;\n }\n\n // No need to check for zero, as +x + +y != 0 && -x + -y != 0\n\n if (k) {\n xc.unshift(k);\n ++ye;\n }\n\n // Remove trailing zeros.\n for (e = xc.length; xc[--e] === 0;) xc.pop();\n\n yBig.c = xc;\n yBig.e = ye;\n\n return yBig;\n};\n\n\n/*\n * Return a Big whose value is the value of this Big raised to the power n.\n * If n is negative, round to a maximum of Big.DP decimal places using rounding\n * mode Big.RM.\n *\n * n {number} Integer, -MAX_POWER to MAX_POWER inclusive.\n */\nP.pow = function (this: InternalBig, n: number): InternalBig {\n var x = this,\n one = new x.constructor('1'),\n y = one,\n isneg = n < 0;\n\n if (n !== ~~n || n < -MAX_POWER || n > MAX_POWER) {\n throw Error(INVALID + 'exponent');\n }\n\n if (isneg) n = -n;\n\n for (;;) {\n if (n & 1) y = y.times(x);\n n >>= 1;\n if (!n) break;\n x = x.times(x);\n }\n\n return isneg ? one.div(y) : y;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd\n * significant digits using rounding mode rm, or Big.RM if rm is not specified.\n *\n * sd {number} Significant digits: integer, 1 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.prec = function (this: InternalBig, sd: number, rm?: RoundingMode): InternalBig {\n if (sd !== ~~sd || sd < 1 || sd > MAX_DP) {\n throw Error(INVALID + 'precision');\n }\n return round(new this.constructor(this), sd, rm);\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big rounded to a maximum of dp decimal places\n * using rounding mode rm, or Big.RM if rm is not specified.\n * If dp is negative, round to an integer which is a multiple of 10**-dp.\n * If dp is not specified, round to 0 decimal places.\n *\n * dp? {number} Integer, -MAX_DP to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.round = function (this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig {\n if (dp === UNDEFINED) dp = 0;\n else if (dp !== ~~dp || dp < -MAX_DP || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n return round(new this.constructor(this), dp + this.e + 1, rm);\n};\n\n\n/*\n * Return a new Big whose value is the square root of the value of this Big, rounded, if\n * necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.\n */\nP.sqrt = function (this: InternalBig): InternalBig {\n var r: InternalBig, c: string, t: InternalBig,\n x = this,\n Big = x.constructor,\n sign = x.s,\n e = x.e,\n half = new Big('0.5'),\n s: number;\n\n // Zero?\n if (!x.c[0]) return new Big(x);\n\n // Negative?\n if (sign < 0) {\n throw Error(NAME + 'No square root');\n }\n\n // Estimate.\n s = Math.sqrt(+stringify(x, true, true));\n\n // Math.sqrt underflow/overflow?\n // Re-estimate: pass x coefficient to Math.sqrt as integer, then adjust the result exponent.\n if (s === 0 || s === 1 / 0) {\n c = x.c.join('');\n if (!(c.length + e & 1)) c += '0';\n s = Math.sqrt(+c);\n e = ((e + 1) / 2 | 0) - ((e < 0 || (e & 1) !== 0) ? 1 : 0);\n if (s == 1 / 0) {\n r = new Big('5e' + e);\n } else {\n c = s.toExponential();\n r = new Big(c.slice(0, c.indexOf('e') + 1) + e);\n }\n } else {\n r = new Big(s + '');\n }\n\n e = r.e + (Big.DP += 4);\n\n // Newton-Raphson iteration.\n do {\n t = r;\n r = half.times(t.plus(x.div(t)));\n } while (t.c.slice(0, e).join('') !== r.c.slice(0, e).join(''));\n\n return round(r, (Big.DP -= 4) + r.e + 1, Big.RM);\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big times the value of Big y.\n */\nP.times = P.mul = function (this: InternalBig, y: InternalSource): InternalBig {\n var c: number[],\n x = this,\n Big = x.constructor,\n xc = x.c,\n yBig = new Big(y),\n yc = yBig.c,\n a = xc.length,\n b = yc.length,\n i = x.e,\n j = yBig.e;\n\n // Determine sign of result.\n yBig.s = x.s == yBig.s ? 1 : -1;\n\n // Return signed 0 if either 0.\n if (!xc[0] || !yc[0]) {\n yBig.c = [yBig.e = 0];\n return yBig;\n }\n\n // Initialise exponent of result as x.e + y.e.\n yBig.e = i + j;\n\n // If array xc has fewer digits than yc, swap xc and yc, and lengths.\n if (a < b) {\n c = xc;\n xc = yc;\n yc = c;\n j = a;\n a = b;\n b = j;\n }\n\n // Initialise coefficient array of result with zeros.\n for (c = new Array(j = a + b); j--;) c[j] = 0;\n\n // Multiply.\n\n // i is initially xc.length.\n for (i = b; i--;) {\n b = 0;\n\n // a is yc.length.\n for (j = a + i; j > i;) {\n\n // Current sum of products at this digit position, plus carry.\n b = (c[j] ?? 0) + (yc[i] ?? 0) * (xc[j - i - 1] ?? 0) + b;\n c[j--] = b % 10;\n\n // carry\n b = b / 10 | 0;\n }\n\n c[j] = b;\n }\n\n // Increment result exponent if there is a final carry, otherwise remove leading zero.\n if (b) ++yBig.e;\n else c.shift();\n\n // Remove trailing zeros.\n for (i = c.length; !c[--i];) c.pop();\n yBig.c = c;\n\n return yBig;\n};\n\n\n/*\n * Return a string representing the value of this Big in exponential notation rounded to dp fixed\n * decimal places using rounding mode rm, or Big.RM if rm is not specified.\n *\n * dp? {number} Decimal places: integer, 0 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.toExponential = function (this: InternalBig, dp?: number, rm?: RoundingMode): string {\n var x = this,\n n = x.c[0];\n\n if (dp !== UNDEFINED) {\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n x = round(new x.constructor(x), ++dp, rm);\n for (; x.c.length < dp;) x.c.push(0);\n }\n\n return stringify(x, true, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big in normal notation rounded to dp fixed\n * decimal places using rounding mode rm, or Big.RM if rm is not specified.\n *\n * dp? {number} Decimal places: integer, 0 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n *\n * (-0).toFixed(0) is '0', but (-0.1).toFixed(0) is '-0'.\n * (-0).toFixed(1) is '0.0', but (-0.01).toFixed(1) is '-0.0'.\n */\nP.toFixed = function (this: InternalBig, dp?: number, rm?: RoundingMode): string {\n var x = this,\n n = x.c[0];\n\n if (dp !== UNDEFINED) {\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n x = round(new x.constructor(x), dp + x.e + 1, rm);\n\n // x.e may have changed if the value is rounded up.\n for (dp = dp + x.e + 1; x.c.length < dp;) x.c.push(0);\n }\n\n return stringify(x, false, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big.\n * Return exponential notation if this Big has a positive exponent equal to or greater than\n * Big.PE, or a negative exponent equal to or less than Big.NE.\n * Omit the sign for negative zero.\n */\nP.toJSON = P.toString = function (this: InternalBig): string {\n var x = this,\n Big = x.constructor;\n return stringify(x, x.e <= Big.NE || x.e >= Big.PE, !!x.c[0]);\n};\n\nif (typeof Symbol !== \"undefined\") {\n P[Symbol.for('nodejs.util.inspect.custom')] = P.toJSON;\n}\n\n\n/*\n * Return the value of this Big as a primitive number.\n */\nP.toNumber = function (this: InternalBig): number {\n var n = +stringify(this, true, true);\n if (this.constructor.strict === true && !this.eq(n.toString())) {\n throw Error(NAME + 'Imprecise conversion');\n }\n return n;\n};\n\n/*\n * Return the value of this Big as a primitive bigint.\n */\nP.toBigInt = function (this: InternalBig): bigint {\n const integer = this.round(0, 0)\n\n if (!this.eq(integer)) {\n throw Error(NAME + 'BigInt conversion requires an integer value')\n }\n\n return BigInt(integer.toFixed(0))\n};\n\n\n/*\n * Return a string representing the value of this Big rounded to sd significant digits using\n * rounding mode rm, or Big.RM if rm is not specified.\n * Use exponential notation if sd is less than the number of digits necessary to represent\n * the integer part of the value in normal notation.\n *\n * sd {number} Significant digits: integer, 1 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.toPrecision = function (this: InternalBig, sd?: number, rm?: RoundingMode): string {\n var x = this,\n Big = x.constructor,\n n = x.c[0];\n\n if (sd !== UNDEFINED) {\n if (sd !== ~~sd || sd < 1 || sd > MAX_DP) {\n throw Error(INVALID + 'precision');\n }\n x = round(new Big(x), sd, rm);\n for (; x.c.length < sd;) x.c.push(0);\n }\n\n return stringify(x, (sd !== UNDEFINED && sd <= x.e) || x.e <= Big.NE || x.e >= Big.PE, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big.\n * Return exponential notation if this Big has a positive exponent equal to or greater than\n * Big.PE, or a negative exponent equal to or less than Big.NE.\n * Include the sign for negative zero.\n */\nP.valueOf = function (this: InternalBig): string {\n var x = this,\n Big = x.constructor;\n if (Big.strict === true) {\n throw Error(NAME + 'valueOf disallowed');\n }\n return stringify(x, x.e <= Big.NE || x.e >= Big.PE, true);\n};\n\nconst Big = _Big_() as unknown as BigConstructor\nexport { Big }\nexport default Big\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["declare namespace Big {\n type BigSource = number | string | bigint | Big;\n\n /**\n * GT = 1, EQ = 0, LT = -1\n */\n type Comparison = -1 | 0 | 1;\n\n /**\n * RoundDown = 0, RoundHalfUp = 1, RoundHalfEven = 2, RoundUp = 3\n */\n type RoundingMode = 0 | 1 | 2 | 3;\n\n interface BigConstructor {\n /**\n * Returns a new instance of a Big number object\n *\n * String values may be in exponential, as well as normal (non-exponential) notation.\n * There is no limit to the number of digits of a string value (other than that of Javascript's maximum array size), but the largest recommended exponent magnitude is 1e+6.\n * Infinity, NaN and hexadecimal literal strings, e.g. '0xff', are not valid.\n * String values in octal literal form will be interpreted as decimals, e.g. '011' is 11, not 9.\n *\n * @throws `NaN` on an invalid value.\n */\n new(value: BigSource): Big;\n\n /**\n * Returns a new instance of a Big number object\n *\n * String values may be in exponential, as well as normal (non-exponential) notation.\n * There is no limit to the number of digits of a string value (other than that of Javascript's maximum array size), but the largest recommended exponent magnitude is 1e+6.\n * Infinity, NaN and hexadecimal literal strings, e.g. '0xff', are not valid.\n * String values in octal literal form will be interpreted as decimals, e.g. '011' is 11, not 9.\n *\n * @throws `NaN` on an invalid value.\n */\n (value: BigSource): Big;\n\n /**\n * Create an additional Big number constructor\n *\n * Values created with the returned constructor will have a separate set of configuration values.\n * This can be used to create Big objects with different DP and RM values.\n * Big numbers created by different constructors can be used together in operations, and it is the DP and RM setting of the Big number that an operation is called upon that will apply.\n * In the interest of memory efficiency, all Big number constructors share the same prototype object,\n * so while the DP and RM (and other own properties) of a constructor are isolated and untouchable by another, its prototype methods are not.\n */\n (): BigConstructor;\n\n /**\n * The maximum number of decimal places of the results of operations involving division.\n * It is relevant only to the div and sqrt methods, and the pow method when the exponent is negative.\n *\n * 0 to 1e+6 inclusive\n * Default value: 20\n */\n DP: number;\n /**\n * The rounding mode used in the above operations and by round, toExponential, toFixed and toPrecision.\n * Default value: 1\n */\n RM: number;\n /**\n * The negative exponent value at and below which toString returns exponential notation.\n *\n * -1e+6 to 0 inclusive\n * Default value: -7\n */\n NE: number;\n /**\n * The positive exponent value at and above which toString returns exponential notation.\n *\n * 0 to 1e+6 inclusive\n * Default value: 21\n */\n PE: number;\n /**\n * When set to true, an error will be thrown if a primitive number is passed to the Big constructor,\n * or if valueOf is called, or if toNumber is called on a Big which cannot be converted to a primitive number without a loss of precision.\n *\n * true|false\n * Default value: false\n */\n strict: boolean;\n\n /** Readonly rounding modes */\n\n /**\n * Rounds towards zero.\n * I.e. truncate, no rounding.\n */\n readonly roundDown: 0;\n /**\n * Rounds towards nearest neighbour.\n * If equidistant, rounds away from zero.\n */\n readonly roundHalfUp: 1;\n /**\n * Rounds towards nearest neighbour.\n * If equidistant, rounds towards even neighbour.\n */\n readonly roundHalfEven: 2;\n /**\n * Rounds away from zero.\n */\n readonly roundUp: 3;\n\n readonly Big: BigConstructor;\n }\n\n interface Big {\n /** Returns a Big number whose value is the absolute value, i.e. the magnitude, of this Big number. */\n abs(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number plus n - alias for .plus().\n *\n * @throws `NaN` if n is invalid.\n */\n add(n: BigSource): Big;\n /**\n * Compare the values.\n *\n * @throws `NaN` if n is invalid.\n */\n cmp(n: BigSource): Comparison;\n /**\n * Returns a Big number whose value is the value of this Big number divided by n.\n *\n * If the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @throws `NaN` if n is invalid.\n * @throws `±Infinity` on division by zero.\n * @throws `NaN` on division of zero by zero.\n */\n div(n: BigSource): Big;\n /**\n * Returns true if the value of this Big equals the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n eq(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is greater than the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n gt(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is greater than or equal to the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n gte(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is less than the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n lt(n: BigSource): boolean;\n /**\n * Returns true if the value of this Big is less than or equal to the value of n, otherwise returns false.\n *\n * @throws `NaN` if n is invalid.\n */\n lte(n: BigSource): boolean;\n /**\n * Returns a Big number whose value is the value of this Big number minus n.\n *\n * @throws `NaN` if n is invalid.\n */\n minus(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number modulo n, i.e. the integer remainder of dividing this Big number by n.\n *\n * The result will have the same sign as this Big number, and it will match that of Javascript's % operator (within the limits of its precision) and BigDecimal's remainder method.\n *\n * @throws `NaN` if n is negative or otherwise invalid.\n */\n mod(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number times n - alias for .times().\n *\n * @throws `NaN` if n is invalid.\n */\n mul(n: BigSource): Big;\n /**\n * Return a new Big whose value is the value of this Big negated.\n */\n neg(): Big;\n /** Mutates this Big to its absolute value and returns this instance. */\n _abs(): Big;\n /** Mutates this Big to its negated value and returns this instance. */\n _neg(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number plus n.\n *\n * @throws `NaN` if n is invalid.\n */\n plus(n: BigSource): Big;\n /** Mutates this Big to the provided source value and returns this instance. */\n _set(n: BigSource): Big;\n /** In-place alias for plus. */\n _plus(n: BigSource): Big;\n /** In-place alias for plus. */\n _add(n: BigSource): Big;\n /** In-place alias for minus. */\n _minus(n: BigSource): Big;\n /** In-place alias for minus. */\n _sub(n: BigSource): Big;\n /** In-place alias for times. */\n _times(n: BigSource): Big;\n /** In-place alias for times. */\n _mul(n: BigSource): Big;\n /** In-place variant of div. */\n _div(n: BigSource): Big;\n /** In-place variant of mod. */\n _mod(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number raised to the power exp.\n *\n * If exp is negative and the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @param exp The power to raise the number to, -1e+6 to 1e+6 inclusive\n * @throws `!pow!` if exp is invalid.\n *\n * Note: High value exponents may cause this method to be slow to return.\n */\n pow(exp: number): Big;\n /** In-place variant of pow. */\n _pow(exp: number): Big;\n /**\n * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd\n * significant digits using rounding mode rm, or Big.RM if rm is not specified.\n *\n * @param sd Significant digits: integer, 1 to MAX_DP inclusive.\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!prec!` if sd is invalid.\n * @throws `!Big.RM!` if rm is invalid.\n */\n prec(sd: number, rm?: RoundingMode): Big;\n /** In-place variant of prec. */\n _prec(sd: number, rm?: RoundingMode): Big;\n /**\n * Returns a Big number whose value is the value of this Big number rounded using rounding mode rm to a maximum of dp decimal places.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!round!` if dp is invalid.\n * @throws `!Big.RM!` if rm is invalid.\n */\n round(dp?: number, rm?: RoundingMode): Big;\n /** In-place variant of round. */\n _round(dp?: number, rm?: RoundingMode): Big;\n /**\n * Returns a Big number whose value is the square root of this Big number.\n *\n * If the result has more fraction digits than is specified by Big.DP, it will be rounded to Big.DP decimal places using rounding mode Big.RM.\n *\n * @throws `NaN` if this Big number is negative.\n */\n sqrt(): Big;\n /** In-place variant of sqrt. */\n _sqrt(): Big;\n /**\n * Returns a Big number whose value is the value of this Big number minus n - alias for .minus().\n *\n * @throws `NaN` if n is invalid.\n */\n sub(n: BigSource): Big;\n /**\n * Returns a Big number whose value is the value of this Big number times n.\n *\n * @throws `NaN` if n is invalid.\n */\n times(n: BigSource): Big;\n /**\n * Returns a string representing the value of this Big number in exponential notation to a fixed number of decimal places dp.\n *\n * If the value of this Big number in exponential notation has more digits to the right of the decimal point than is specified by dp,\n * the return value will be rounded to dp decimal places using rounding mode Big.RM.\n *\n * If the value of this Big number in exponential notation has fewer digits to the right of the decimal point than is specified by dp, the return value will be appended with zeros accordingly.\n *\n * If dp is omitted, or is null or undefined, the number of digits after the decimal point defaults to the minimum number of digits necessary to represent the value exactly.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toFix!` if dp is invalid.\n */\n toExponential(dp?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number in normal notation to a fixed number of decimal places dp.\n *\n * If the value of this Big number in normal notation has more digits to the right of the decimal point than is specified by dp,\n * the return value will be rounded to dp decimal places using rounding mode Big.RM.\n *\n * If the value of this Big number in normal notation has fewer fraction digits then is specified by dp, the return value will be appended with zeros accordingly.\n *\n * Unlike Number.prototype.toFixed, which returns exponential notation if a number is greater or equal to 1021, this method will always return normal notation.\n *\n * If dp is omitted, or is null or undefined, then the return value is simply the value in normal notation.\n * This is also unlike Number.prototype.toFixed, which returns the value to zero decimal places.\n *\n * @param dp Decimal places, 0 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toFix!` if dp is invalid.\n */\n toFixed(dp?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number to the specified number of significant digits sd.\n *\n * If the value of this Big number has more digits than is specified by sd, the return value will be rounded to sd significant digits using rounding mode Big.RM.\n *\n * If the value of this Big number has fewer digits than is specified by sd, the return value will be appended with zeros accordingly.\n *\n * If sd is less than the number of digits necessary to represent the integer part of the value in normal notation, then exponential notation is used.\n *\n * If sd is omitted, or is null or undefined, then the return value is the same as .toString().\n *\n * @param sd Significant digits, 1 to 1e+6 inclusive\n * @param rm Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * @throws `!toPre!` if sd is invalid.\n */\n toPrecision(sd?: number, rm?: RoundingMode): string;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n toString(): string;\n /**\n * Returns a primitive number representing the value of this Big number.\n *\n * If Big.strict is true an error will be thrown if toNumber is called on a Big number which cannot be converted to a primitive number without a loss of precision.\n *\n * @since 6.0\n */\n toNumber(): number;\n /**\n * Returns a primitive bigint representing the value of this Big number.\n *\n * @throws if this Big number is not an integer.\n */\n toBigInt(): bigint;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n valueOf(): string;\n /**\n * Returns a string representing the value of this Big number.\n *\n * If this Big number has a positive exponent that is equal to or greater than 21, or a negative exponent equal to or less than -7, then exponential notation is returned.\n *\n * The point at which toString returns exponential rather than normal notation can be adjusted by changing\n * the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.\n */\n toJSON(): string;\n /**\n * Returns an array of single digits\n */\n c: number[];\n /**\n * Returns the exponent, Integer, -1e+6 to 1e+6 inclusive\n */\n e: number;\n /**\n * Returns the sign, -1 or 1\n */\n s: number;\n }\n}\n\ntype Big = Big.Big\ntype BigConstructor = Big.BigConstructor\n\nexport type BigSource = Big.BigSource\nexport type Comparison = Big.Comparison\nexport type RoundingMode = Big.RoundingMode\nexport type BigInstance = Big\n\ntype InternalSign = 1 | -1\ntype InternalDigits = number[]\ntype InternalSource = BigSource | InternalBig\n\ninterface InternalBig extends InternalBigProto {\n c: InternalDigits\n e: number\n s: InternalSign\n constructor: InternalBigConstructor\n}\n\ninterface InternalBigConstructor {\n (): InternalBigConstructor\n (value: InternalSource): InternalBig\n new (value: InternalSource): InternalBig\n DP: number\n RM: RoundingMode\n NE: number\n PE: number\n strict: boolean\n roundDown: 0\n roundHalfUp: 1\n roundHalfEven: 2\n roundUp: 3\n prototype: InternalBigProto\n}\n\ninterface InternalBigProto {\n abs(this: InternalBig): InternalBig\n _abs(this: InternalBig): InternalBig\n _set(this: InternalBig, y: InternalSource): InternalBig\n cmp(this: InternalBig, y: InternalSource): Comparison\n div(this: InternalBig, y: InternalSource): InternalBig\n _div(this: InternalBig, y: InternalSource): InternalBig\n eq(this: InternalBig, y: InternalSource): boolean\n gt(this: InternalBig, y: InternalSource): boolean\n gte(this: InternalBig, y: InternalSource): boolean\n lt(this: InternalBig, y: InternalSource): boolean\n lte(this: InternalBig, y: InternalSource): boolean\n minus(this: InternalBig, y: InternalSource): InternalBig\n sub(this: InternalBig, y: InternalSource): InternalBig\n _minus(this: InternalBig, y: InternalSource): InternalBig\n _sub(this: InternalBig, y: InternalSource): InternalBig\n mod(this: InternalBig, y: InternalSource): InternalBig\n _mod(this: InternalBig, y: InternalSource): InternalBig\n neg(this: InternalBig): InternalBig\n _neg(this: InternalBig): InternalBig\n plus(this: InternalBig, y: InternalSource): InternalBig\n add(this: InternalBig, y: InternalSource): InternalBig\n _plus(this: InternalBig, y: InternalSource): InternalBig\n _add(this: InternalBig, y: InternalSource): InternalBig\n pow(this: InternalBig, n: number): InternalBig\n _pow(this: InternalBig, n: number): InternalBig\n prec(this: InternalBig, sd: number, rm?: RoundingMode): InternalBig\n _prec(this: InternalBig, sd: number, rm?: RoundingMode): InternalBig\n round(this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig\n _round(this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig\n sqrt(this: InternalBig): InternalBig\n _sqrt(this: InternalBig): InternalBig\n times(this: InternalBig, y: InternalSource): InternalBig\n mul(this: InternalBig, y: InternalSource): InternalBig\n _times(this: InternalBig, y: InternalSource): InternalBig\n _mul(this: InternalBig, y: InternalSource): InternalBig\n toExponential(this: InternalBig, dp?: number, rm?: RoundingMode): string\n toFixed(this: InternalBig, dp?: number, rm?: RoundingMode): string\n toJSON(this: InternalBig): string\n toString(this: InternalBig): string\n toNumber(this: InternalBig): number\n toBigInt(this: InternalBig): bigint\n toPrecision(this: InternalBig, sd?: number, rm?: RoundingMode): string\n valueOf(this: InternalBig): string\n [symbolKey: symbol]: ((this: InternalBig) => string) | undefined\n}\n\n/*\n * big.js v7.0.1\n * A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.\n * Copyright (c) 2025 Michael Mclaughlin\n * https://github.com/MikeMcl/big.js/LICENCE.md\n */\n\n\n/************************************** EDITABLE DEFAULTS *****************************************/\n\n\n // The default values below must be integers within the stated ranges.\n\n /*\n * The maximum number of decimal places (DP) of the results of operations involving division:\n * div and sqrt, and pow with negative exponents.\n */\nvar DP = 20, // 0 to MAX_DP\n\n /*\n * The rounding mode (RM) used when rounding to the above decimal places.\n *\n * 0 Towards zero (i.e. truncate, no rounding). (ROUND_DOWN)\n * 1 To nearest neighbour. If equidistant, round up. (ROUND_HALF_UP)\n * 2 To nearest neighbour. If equidistant, to even. (ROUND_HALF_EVEN)\n * 3 Away from zero. (ROUND_UP)\n */\n RM = 1 as RoundingMode, // 0, 1, 2 or 3\n\n // The maximum value of DP and Big.DP.\n MAX_DP = 1E6, // 0 to 1000000\n\n // The maximum magnitude of the exponent argument to the pow method.\n MAX_POWER = 1E6, // 1 to 1000000\n\n /*\n * The negative exponent (NE) at and beneath which toString returns exponential notation.\n * (JavaScript numbers: -7)\n * -1000000 is the minimum recommended exponent value of a Big.\n */\n NE = -7, // 0 to -1000000\n\n /*\n * The positive exponent (PE) at and above which toString returns exponential notation.\n * (JavaScript numbers: 21)\n * 1000000 is the maximum recommended exponent value of a Big, but this limit is not enforced.\n */\n PE = 21, // 0 to 1000000\n\n /*\n * When true, an error will be thrown if a primitive number is passed to the Big constructor,\n * or if valueOf is called, or if toNumber is called on a Big which cannot be converted to a\n * primitive number without a loss of precision.\n */\n STRICT = false, // true or false\n\n\n/**************************************************************************************************/\n\n\n // Error messages.\n NAME = '[big.js] ',\n INVALID = NAME + 'Invalid ',\n INVALID_DP = INVALID + 'decimal places',\n INVALID_RM = INVALID + 'rounding mode',\n DIV_BY_ZERO = NAME + 'Division by zero',\n\n // The shared prototype object.\n P = {} as unknown as InternalBigProto,\n UNDEFINED = void 0,\n NUMERIC = /^-?(\\d+(\\.\\d*)?|\\.\\d+)(e[+-]?\\d+)?$/i;\n\nconst SOURCE_BUFFER: InternalDigits = []\nlet SOURCE_C: InternalDigits = SOURCE_BUFFER\nlet SOURCE_E = 0\nlet SOURCE_S: InternalSign = 1\n\n\n/*\n * Create and return a Big constructor.\n */\nfunction _Big_(): InternalBigConstructor {\n\n /*\n * The Big constructor and exported function.\n * Create and return a new instance of a Big number object.\n *\n * n {number|string|Big} A numeric value.\n */\n function Big(this: unknown, n?: InternalSource): InternalBig | InternalBigConstructor | void {\n const Ctor = Big as unknown as InternalBigConstructor\n const x = this as unknown\n\n // Enable constructor usage without new.\n if (!(x instanceof Ctor)) {\n return n === UNDEFINED && arguments.length === 0 ? _Big_() : new Ctor(n as InternalSource);\n }\n\n const instance = x as InternalBig\n\n // Duplicate.\n if (n instanceof Ctor) {\n instance.s = n.s;\n instance.e = n.e;\n instance.c = n.c.slice();\n } else {\n let value = n\n\n if (typeof value !== 'string') {\n if (Ctor.strict === true && typeof value !== 'bigint') {\n throw TypeError(INVALID + 'value');\n }\n\n // Minus zero?\n value = value === 0 && 1 / value < 0 ? '-0' : String(value);\n }\n\n parse(instance, value);\n }\n\n // Retain a reference to this Big constructor.\n // Shadow Big.prototype.constructor which points to Object.\n instance.constructor = Ctor;\n }\n\n const Ctor = Big as unknown as InternalBigConstructor\n\n Ctor.prototype = P;\n Ctor.DP = DP;\n Ctor.RM = RM;\n Ctor.NE = NE;\n Ctor.PE = PE;\n Ctor.strict = STRICT;\n Ctor.roundDown = 0;\n Ctor.roundHalfUp = 1;\n Ctor.roundHalfEven = 2;\n Ctor.roundUp = 3;\n\n return Ctor;\n}\n\nfunction negateSign(s: InternalSign): InternalSign {\n return s === 1 ? -1 : 1;\n}\n\nfunction mutateFrom(x: InternalBig, y: InternalBig): InternalBig {\n x.c = y.c;\n x.e = y.e;\n x.s = y.s;\n return x;\n}\n\n\n/*\n * Parse the number or string value passed to a Big constructor.\n *\n * x {Big} A Big number instance.\n * n {number|string} A numeric value.\n */\nfunction parse(x: InternalBig, n: string): InternalBig {\n var e, i, nl;\n\n if (!NUMERIC.test(n)) {\n throw Error(INVALID + 'number');\n }\n\n // Determine sign.\n x.s = n.charAt(0) == '-' ? (n = n.slice(1), -1) : 1;\n\n // Decimal point?\n if ((e = n.indexOf('.')) > -1) n = n.replace('.', '');\n\n // Exponential form?\n if ((i = n.search(/e/i)) > 0) {\n\n // Determine exponent.\n if (e < 0) e = i;\n e += +n.slice(i + 1);\n n = n.substring(0, i);\n } else if (e < 0) {\n\n // Integer.\n e = n.length;\n }\n\n nl = n.length;\n\n // Determine leading zeros.\n for (i = 0; i < nl && n.charAt(i) == '0';) ++i;\n\n if (i == nl) {\n\n // Zero.\n x.c = [x.e = 0];\n } else {\n\n // Determine trailing zeros.\n for (; nl > 0 && n.charAt(--nl) == '0';);\n x.e = e - i - 1;\n x.c = [];\n\n // Convert string to array of digits without leading/trailing zeros.\n for (e = 0; i <= nl;) x.c[e++] = +n.charAt(i++);\n }\n\n return x;\n}\n\nfunction isInternalBigSource(value: InternalSource): value is InternalBig {\n return typeof value === 'object'\n}\n\nfunction parseSourceString(n: string): void {\n let e: number\n let i: number\n let nl: number\n\n if (!NUMERIC.test(n)) {\n throw Error(INVALID + 'number')\n }\n\n SOURCE_S = n.charAt(0) == '-' ? (n = n.slice(1), -1) : 1\n\n if ((e = n.indexOf('.')) > -1) n = n.replace('.', '')\n\n if ((i = n.search(/e/i)) > 0) {\n if (e < 0) e = i\n e += +n.slice(i + 1)\n n = n.substring(0, i)\n } else if (e < 0) {\n e = n.length\n }\n\n nl = n.length\n\n for (i = 0; i < nl && n.charAt(i) == '0';) ++i\n\n if (i == nl) {\n SOURCE_E = 0\n SOURCE_C = SOURCE_BUFFER\n SOURCE_C.length = 1\n SOURCE_C[0] = 0\n return\n }\n\n for (; nl > 0 && n.charAt(--nl) == '0';);\n\n SOURCE_E = e - i - 1\n SOURCE_C = SOURCE_BUFFER\n SOURCE_C.length = 0\n\n for (e = 0; i <= nl;) SOURCE_C[e++] = +n.charAt(i++)\n}\n\nfunction loadSourceParts(Big: InternalBigConstructor, value: InternalSource): void {\n if (isInternalBigSource(value)) {\n SOURCE_C = value.c\n SOURCE_E = value.e\n SOURCE_S = value.s\n return\n }\n\n let n = value\n\n if (typeof n !== 'string') {\n if (Big.strict === true && typeof n !== 'bigint') {\n throw TypeError(INVALID + 'value')\n }\n\n n = n === 0 && 1 / n < 0 ? '-0' : String(n)\n }\n\n parseSourceString(n)\n}\n\n\n/*\n * Round Big x to a maximum of sd significant digits using rounding mode rm.\n *\n * x {Big} The Big to round.\n * sd {number} Significant digits: integer, 0 to MAX_DP inclusive.\n * rm {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n * [more] {boolean} Whether the result of division was truncated.\n */\nfunction round(x: InternalBig, sd: number, rm?: RoundingMode, more?: boolean): InternalBig {\n var xc = x.c;\n var d0 = xc[0] ?? 0;\n\n if (rm === UNDEFINED) rm = x.constructor.RM;\n if (rm !== 0 && rm !== 1 && rm !== 2 && rm !== 3) {\n throw Error(INVALID_RM);\n }\n\n if (sd < 1) {\n more =\n rm === 3 && (more || !!xc[0]) || sd === 0 && (\n rm === 1 && d0 >= 5 ||\n rm === 2 && (d0 > 5 || d0 === 5 && (more || xc[1] !== UNDEFINED))\n );\n\n xc.length = 1;\n\n if (more) {\n\n // 1, 0.1, 0.01, 0.001, 0.0001 etc.\n x.e = x.e - sd + 1;\n xc[0] = 1;\n } else {\n\n // Zero.\n xc[0] = x.e = 0;\n }\n } else if (sd < xc.length) {\n d0 = xc[sd] ?? 0;\n\n // xc[sd] is the digit after the digit that may be rounded up.\n more =\n rm === 1 && d0 >= 5 ||\n rm === 2 && (d0 > 5 || d0 === 5 &&\n (more || xc[sd + 1] !== UNDEFINED || ((xc[sd - 1] ?? 0) & 1) === 1)) ||\n rm === 3 && (more || !!xc[0]);\n\n // Remove extra digits after the required precision.\n xc.length = sd;\n\n // Round up?\n if (more) {\n\n // Rounding up may mean the previous digit has to be rounded up.\n for (; ++(xc[--sd]!) > 9;) {\n xc[sd] = 0;\n if (sd === 0) {\n ++x.e;\n xc.unshift(1);\n break;\n }\n }\n }\n\n // Remove trailing zeros.\n for (sd = xc.length; !xc[--sd];) xc.pop();\n }\n\n return x;\n}\n\n\n/*\n * Return a string representing the value of Big x in normal or exponential notation.\n * Handles P.toExponential, P.toFixed, P.toJSON, P.toPrecision, P.toString and P.valueOf.\n */\nfunction stringify(x: InternalBig, doExponential: boolean, isNonzero: boolean): string {\n var e = x.e,\n s = x.c.join(''),\n n = s.length;\n\n // Exponential notation?\n if (doExponential) {\n s = s.charAt(0) + (n > 1 ? '.' + s.slice(1) : '') + (e < 0 ? 'e' : 'e+') + e;\n\n // Normal notation.\n } else if (e < 0) {\n for (; ++e;) s = '0' + s;\n s = '0.' + s;\n } else if (e > 0) {\n if (++e > n) {\n for (e -= n; e--;) s += '0';\n } else if (e < n) {\n s = s.slice(0, e) + '.' + s.slice(e);\n }\n } else if (n > 1) {\n s = s.charAt(0) + '.' + s.slice(1);\n }\n\n return x.s < 0 && isNonzero ? '-' + s : s;\n}\n\n\n// Prototype/instance methods\n\n\n/*\n * Return a new Big whose value is the absolute value of this Big.\n */\nP.abs = function (this: InternalBig) {\n var x = new this.constructor(this);\n x.s = 1;\n return x;\n};\n\nP._abs = function (this: InternalBig): InternalBig {\n if (this.s < 0) this.s = 1;\n return this;\n};\n\nP._set = function (this: InternalBig, y: InternalSource): InternalBig {\n const x = this\n const Big = x.constructor\n\n loadSourceParts(Big, y)\n\n const yc = SOURCE_C\n const yl = yc.length\n\n x.c.length = yl\n for (let i = 0; i < yl; i++) x.c[i] = yc[i] ?? 0\n\n x.e = SOURCE_E\n x.s = SOURCE_S\n\n return x\n};\n\n\n/*\n * Return 1 if the value of this Big is greater than the value of Big y,\n * -1 if the value of this Big is less than the value of Big y, or\n * 0 if they have the same value.\n */\nP.cmp = function (this: InternalBig, y: InternalSource): Comparison {\n var i, j,\n isneg,\n x = this,\n xc = x.c,\n yBig = new x.constructor(y),\n yc = yBig.c,\n xs = x.s,\n ys = yBig.s,\n k = x.e,\n l = yBig.e;\n\n // Either zero?\n if (!xc[0] || !yc[0]) return (!xc[0] ? !yc[0] ? 0 : negateSign(ys) : xs) as Comparison;\n\n // Signs differ?\n if (xs != ys) return xs as Comparison;\n\n isneg = xs < 0;\n\n // Compare exponents.\n if (k != l) return (((k > l ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n\n j = (k = xc.length) < (l = yc.length) ? k : l;\n\n // Compare digit by digit.\n for (i = -1; ++i < j;) {\n if (xc[i] != yc[i]) return (((xc[i]! > yc[i]! ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n }\n\n // Compare lengths.\n return (k == l ? 0 : ((k > l ? 1 : 0) ^ (isneg ? 1 : 0)) ? 1 : -1) as Comparison;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big divided by the value of Big y, rounded,\n * if necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.\n */\nP.div = function (this: InternalBig, y: InternalSource): InternalBig {\n var x = this,\n Big = x.constructor,\n a = x.c, // dividend\n yBig = new Big(y),\n b = yBig.c, // divisor\n sign: InternalSign = x.s == yBig.s ? 1 : -1,\n dp = Big.DP;\n\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n\n // Divisor is zero?\n if (!b[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n // Dividend is 0? Return +-0.\n if (!a[0]) {\n yBig.s = sign;\n yBig.c = [yBig.e = 0];\n return yBig;\n }\n\n var bl, bt, n, cmp, ri,\n bz = b.slice(),\n ai = bl = b.length,\n al = a.length,\n r = a.slice(0, bl) as Array<number | undefined>, // remainder\n rl = r.length,\n q = yBig, // quotient\n qc = q.c = [] as InternalDigits,\n qi = 0,\n p = dp + (q.e = x.e - yBig.e) + 1, // precision of the result\n k = p < 0 ? 0 : p;\n\n q.s = sign;\n\n // Create version of divisor with leading zero.\n bz.unshift(0);\n\n // Add zeros to make remainder as long as divisor.\n for (; rl++ < bl;) r.push(0);\n\n do {\n\n // n is how many times the divisor goes into current remainder.\n for (n = 0; n < 10; n++) {\n\n // Compare divisor and remainder.\n if (bl != (rl = r.length)) {\n cmp = bl > rl ? 1 : -1;\n } else {\n for (ri = -1, cmp = 0; ++ri < bl;) {\n if (b[ri] != r[ri]) {\n cmp = b[ri]! > r[ri]! ? 1 : -1;\n break;\n }\n }\n }\n\n // If divisor < remainder, subtract divisor from remainder.\n if (cmp < 0) {\n\n // Remainder can't be more than 1 digit longer than divisor.\n // Equalise lengths using divisor with extra leading zero?\n for (bt = rl == bl ? b : bz; rl;) {\n if (r[--rl]! < bt[rl]!) {\n ri = rl;\n for (; ri && !r[--ri];) r[ri] = 9;\n --r[ri]!;\n r[rl] = (r[rl] ?? 0) + 10;\n }\n r[rl] = (r[rl] ?? 0) - bt[rl]!;\n }\n\n for (; !r[0];) r.shift();\n } else {\n break;\n }\n }\n\n // Add the digit n to the result array.\n qc[qi++] = cmp ? n : ++n;\n\n // Update the remainder.\n if (r[0] && cmp) r[rl] = a[ai] || 0;\n else r = [a[ai]];\n\n } while ((ai++ < al || r[0] !== UNDEFINED) && k--);\n\n // Leading zero? Do not remove if result is simply zero (qi == 1).\n if (!qc[0] && qi != 1) {\n\n // There can't be more than one zero.\n qc.shift();\n q.e--;\n p--;\n }\n\n // Round?\n if (qi > p) round(q, p, Big.RM, r[0] !== UNDEFINED);\n\n return q;\n};\n\nP._div = function (this: InternalBig, y: InternalSource): InternalBig {\n var x = this,\n Big = x.constructor,\n a = x.c.slice(), // dividend\n yBig = new Big(y),\n b = yBig.c, // divisor\n sign: InternalSign = x.s == yBig.s ? 1 : -1,\n dp = Big.DP;\n\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n\n // Divisor is zero?\n if (!b[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n // Dividend is 0? Return +-0.\n if (!a[0]) {\n x.s = sign;\n x.c = [x.e = 0];\n return x;\n }\n\n var bl, bt, n, cmp, ri,\n bz = b.slice(),\n ai = bl = b.length,\n al = a.length,\n r = a.slice(0, bl) as Array<number | undefined>, // remainder\n rl = r.length,\n q = x, // quotient (in place)\n qc = q.c = [] as InternalDigits,\n qi = 0,\n p = dp + (q.e = x.e - yBig.e) + 1, // precision of the result\n k = p < 0 ? 0 : p;\n\n q.s = sign;\n\n // Create version of divisor with leading zero.\n bz.unshift(0);\n\n // Add zeros to make remainder as long as divisor.\n for (; rl++ < bl;) r.push(0);\n\n do {\n\n // n is how many times the divisor goes into current remainder.\n for (n = 0; n < 10; n++) {\n\n // Compare divisor and remainder.\n if (bl != (rl = r.length)) {\n cmp = bl > rl ? 1 : -1;\n } else {\n for (ri = -1, cmp = 0; ++ri < bl;) {\n if (b[ri] != r[ri]) {\n cmp = b[ri]! > r[ri]! ? 1 : -1;\n break;\n }\n }\n }\n\n // If divisor < remainder, subtract divisor from remainder.\n if (cmp < 0) {\n\n // Remainder can't be more than 1 digit longer than divisor.\n // Equalise lengths using divisor with extra leading zero?\n for (bt = rl == bl ? b : bz; rl;) {\n if (r[--rl]! < bt[rl]!) {\n ri = rl;\n for (; ri && !r[--ri];) r[ri] = 9;\n --r[ri]!;\n r[rl] = (r[rl] ?? 0) + 10;\n }\n r[rl] = (r[rl] ?? 0) - bt[rl]!;\n }\n\n for (; !r[0];) r.shift();\n } else {\n break;\n }\n }\n\n // Add the digit n to the result array.\n qc[qi++] = cmp ? n : ++n;\n\n // Update the remainder.\n if (r[0] && cmp) r[rl] = a[ai] || 0;\n else r = [a[ai]];\n\n } while ((ai++ < al || r[0] !== UNDEFINED) && k--);\n\n // Leading zero? Do not remove if result is simply zero (qi == 1).\n if (!qc[0] && qi != 1) {\n\n // There can't be more than one zero.\n qc.shift();\n q.e--;\n p--;\n }\n\n // Round?\n if (qi > p) round(q, p, Big.RM, r[0] !== UNDEFINED);\n\n return q;\n};\n\n\n/*\n * Return true if the value of this Big is equal to the value of Big y, otherwise return false.\n */\nP.eq = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) === 0;\n};\n\n\n/*\n * Return true if the value of this Big is greater than the value of Big y, otherwise return\n * false.\n */\nP.gt = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) > 0;\n};\n\n\n/*\n * Return true if the value of this Big is greater than or equal to the value of Big y, otherwise\n * return false.\n */\nP.gte = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) > -1;\n};\n\n\n/*\n * Return true if the value of this Big is less than the value of Big y, otherwise return false.\n */\nP.lt = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) < 0;\n};\n\n\n/*\n * Return true if the value of this Big is less than or equal to the value of Big y, otherwise\n * return false.\n */\nP.lte = function (this: InternalBig, y: InternalSource): boolean {\n return this.cmp(y) < 1;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big minus the value of Big y.\n */\nP.minus = P.sub = function (this: InternalBig, y: InternalSource): InternalBig {\n var i, j, t, xlty,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n a = x.s,\n b = yBig.s;\n\n // Signs differ?\n if (a != b) {\n yBig.s = negateSign(b);\n return x.plus(yBig);\n }\n\n var xc = x.c.slice(),\n xe = x.e,\n yc = yBig.c,\n ye = yBig.e,\n aDiff = xe - ye;\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (yc[0]) {\n yBig.s = negateSign(b);\n } else if (xc[0]) {\n yBig = new Big(x);\n } else {\n yBig.s = 1;\n }\n return yBig;\n }\n\n // Determine which is the bigger number. Prepend zeros to equalise exponents.\n if (aDiff) {\n\n if (xlty = aDiff < 0) {\n aDiff = -aDiff;\n t = xc;\n } else {\n ye = xe;\n t = yc;\n }\n\n t.reverse();\n for (j = aDiff; j--;) t.push(0);\n t.reverse();\n } else {\n\n // Exponents equal. Check digit by digit.\n j = ((xlty = xc.length < yc.length) ? xc : yc).length;\n\n for (i = 0; i < j; i++) {\n if (xc[i] != yc[i]) {\n xlty = xc[i]! < yc[i]!;\n break;\n }\n }\n }\n\n // x < y? Point xc to the array of the bigger number.\n if (xlty) {\n t = xc;\n xc = yc;\n yc = t;\n yBig.s = negateSign(yBig.s);\n }\n\n /*\n * Append zeros to xc if shorter. No need to add zeros to yc if shorter as subtraction only\n * needs to start at yc.length.\n */\n if ((j = yc.length - (i = xc.length)) > 0) for (; j--;) xc[i++] = 0;\n\n // Subtract yc from xc.\n for (j = i; j > aDiff;) {\n if (xc[--j]! < (yc[j] ?? 0)) {\n for (i = j; i && !xc[--i];) xc[i] = 9;\n --xc[i]!;\n xc[j] = (xc[j] ?? 0) + 10;\n }\n\n xc[j] = (xc[j] ?? 0) - (yc[j] ?? 0);\n }\n\n // Remove trailing zeros.\n for (j = xc.length; xc[--j] === 0;) xc.pop();\n\n // Remove leading zeros and adjust exponent accordingly.\n for (; xc[0] === 0;) {\n xc.shift();\n --ye;\n }\n\n if (!xc[0]) {\n\n // n - n = +0\n yBig.s = 1;\n\n // Result must be zero.\n xc = [ye = 0];\n }\n\n yBig.c = xc;\n yBig.e = ye;\n\n return yBig;\n};\n\nP._minus = P._sub = function (this: InternalBig, y: InternalSource): InternalBig {\n var i, j, t, xlty,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n xSign = x.s,\n ySign = yBig.s,\n xc = x.c.slice(),\n xe = x.e,\n yc = yBig.c,\n ye = yBig.e,\n eDiff = xe - ye;\n\n // Signs differ?\n if (xSign != ySign) {\n yBig.s = negateSign(ySign);\n return x._plus(yBig);\n }\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (!yc[0]) return x;\n\n x.c = yc.slice();\n x.e = ye;\n x.s = negateSign(ySign);\n\n if (!x.c[0]) x.s = 1;\n return x;\n }\n\n // Determine which is the bigger number. Prepend zeros to equalise exponents.\n if (eDiff) {\n\n if (xlty = eDiff < 0) {\n eDiff = -eDiff;\n t = xc;\n } else {\n ye = xe;\n t = yc;\n }\n\n t.reverse();\n for (j = eDiff; j--;) t.push(0);\n t.reverse();\n } else {\n\n // Exponents equal. Check digit by digit.\n j = ((xlty = xc.length < yc.length) ? xc : yc).length;\n\n for (i = 0; i < j; i++) {\n if (xc[i] != yc[i]) {\n xlty = xc[i]! < yc[i]!;\n break;\n }\n }\n }\n\n // x < y? Point xc to the array of the bigger number.\n if (xlty) {\n t = xc;\n xc = yc;\n yc = t;\n xSign = negateSign(xSign);\n }\n\n /*\n * Append zeros to xc if shorter. No need to add zeros to yc if shorter as subtraction only\n * needs to start at yc.length.\n */\n if ((j = yc.length - (i = xc.length)) > 0) for (; j--;) xc[i++] = 0;\n\n // Subtract yc from xc.\n for (j = i; j > eDiff;) {\n if (xc[--j]! < (yc[j] ?? 0)) {\n for (i = j; i && !xc[--i];) xc[i] = 9;\n --xc[i]!;\n xc[j] = (xc[j] ?? 0) + 10;\n }\n\n xc[j] = (xc[j] ?? 0) - (yc[j] ?? 0);\n }\n\n // Remove trailing zeros.\n for (j = xc.length; xc[--j] === 0;) xc.pop();\n\n // Remove leading zeros and adjust exponent accordingly.\n for (; xc[0] === 0;) {\n xc.shift();\n --ye;\n }\n\n if (!xc[0]) {\n\n // n - n = +0\n xSign = 1;\n\n // Result must be zero.\n xc = [ye = 0];\n }\n\n x.c = xc;\n x.e = ye;\n x.s = xSign;\n\n return x;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big modulo the value of Big y.\n */\nP.mod = function (this: InternalBig, y: InternalSource): InternalBig {\n var ygtx,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n xSign = x.s,\n ySign = yBig.s,\n dp: number,\n rm: RoundingMode;\n\n if (!yBig.c[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n x.s = yBig.s = 1;\n ygtx = yBig.cmp(x) == 1;\n x.s = xSign;\n yBig.s = ySign;\n\n if (ygtx) return new Big(x);\n\n dp = Big.DP;\n rm = Big.RM;\n Big.DP = 0;\n Big.RM = 0;\n x = x.div(yBig);\n Big.DP = dp;\n Big.RM = rm;\n\n return this.minus(x.times(yBig));\n};\n\nP._mod = function (this: InternalBig, y: InternalSource): InternalBig {\n var ygtx,\n x = this,\n Big = x.constructor,\n yBig = new Big(y),\n xSign = x.s,\n ySign = yBig.s,\n dp: number,\n rm: RoundingMode,\n quotient: InternalBig;\n\n if (!yBig.c[0]) {\n throw Error(DIV_BY_ZERO);\n }\n\n x.s = yBig.s = 1;\n ygtx = yBig.cmp(x) == 1;\n x.s = xSign;\n yBig.s = ySign;\n\n if (ygtx) return x;\n\n dp = Big.DP;\n rm = Big.RM;\n Big.DP = 0;\n Big.RM = 0;\n quotient = new Big(x).div(yBig);\n Big.DP = dp;\n Big.RM = rm;\n\n return x._minus(quotient.times(yBig));\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big negated.\n */\nP.neg = function (this: InternalBig): InternalBig {\n var x = new this.constructor(this);\n x.s = negateSign(x.s);\n return x;\n};\n\nP._neg = function (this: InternalBig): InternalBig {\n this.s = negateSign(this.s);\n return this;\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big plus the value of Big y.\n */\nP.plus = P.add = function (this: InternalBig, y: InternalSource): InternalBig {\n var e, k, t,\n x = this,\n Big = x.constructor,\n yBig = new Big(y);\n\n // Signs differ?\n if (x.s != yBig.s) {\n yBig.s = negateSign(yBig.s);\n return x.minus(yBig);\n }\n\n var xe = x.e,\n xc = x.c,\n ye = yBig.e,\n yc = yBig.c;\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (!yc[0]) {\n if (xc[0]) {\n yBig = new Big(x);\n } else {\n yBig.s = x.s;\n }\n }\n return yBig;\n }\n\n xc = xc.slice();\n\n // Prepend zeros to equalise exponents.\n // Note: reverse faster than unshifts.\n if (e = xe - ye) {\n if (e > 0) {\n ye = xe;\n t = yc;\n } else {\n e = -e;\n t = xc;\n }\n\n t.reverse();\n for (; e--;) t.push(0);\n t.reverse();\n }\n\n // Point xc to the longer array.\n if (xc.length - yc.length < 0) {\n t = yc;\n yc = xc;\n xc = t;\n }\n\n // Only start adding at yc.length - 1 as the further digits of xc can be left as they are.\n for (k = 0, e = yc.length; e;) {\n --e;\n k = (xc[e] = (xc[e] ?? 0) + (yc[e] ?? 0) + k) / 10 | 0;\n xc[e]! %= 10;\n }\n\n // No need to check for zero, as +x + +y != 0 && -x + -y != 0\n\n if (k) {\n xc.unshift(k);\n ++ye;\n }\n\n // Remove trailing zeros.\n for (e = xc.length; xc[--e] === 0;) xc.pop();\n\n yBig.c = xc;\n yBig.e = ye;\n\n return yBig;\n};\n\nP._plus = P._add = function (this: InternalBig, y: InternalSource): InternalBig {\n const x = this\n const Big = x.constructor\n\n loadSourceParts(Big, y)\n\n const yc = SOURCE_C\n const ye = SOURCE_E\n const ys = SOURCE_S\n\n const xc = x.c\n const xe = x.e\n const xs = x.s\n\n const xLen = xc.length\n const yLen = yc.length\n\n // Either zero?\n if (!xc[0] || !yc[0]) {\n if (!yc[0]) return x\n\n xc.length = yLen\n for (let i = 0; i < yLen; i++) xc[i] = yc[i] ?? 0\n\n x.e = ye\n x.s = ys\n return x\n }\n\n const topExponent = xe > ye ? xe : ye\n const shiftX = topExponent - xe\n const shiftY = topExponent - ye\n\n // Same sign: magnitude addition.\n if (xs == ys) {\n const lenX = xLen + shiftX\n const lenY = yLen + shiftY\n let len = lenX > lenY ? lenX : lenY\n let carry = 0\n\n xc.length = len\n\n for (let i = len - 1; i >= 0; i--) {\n const ix = i - shiftX\n const iy = i - shiftY\n const dx = ix >= 0 && ix < xLen ? (xc[ix] ?? 0) : 0\n const dy = iy >= 0 && iy < yLen ? (yc[iy] ?? 0) : 0\n const sum = dx + dy + carry\n\n xc[i] = sum % 10\n carry = sum / 10 | 0\n }\n\n if (carry) {\n xc.length = len + 1\n\n for (let i = len; i > 0; i--) xc[i] = xc[i - 1] ?? 0\n\n xc[0] = carry\n len += 1\n x.e = topExponent + 1\n } else {\n x.e = topExponent\n }\n\n while (len > 1 && xc[len - 1] === 0) --len\n xc.length = len\n x.s = xs\n\n return x\n }\n\n // Different signs: magnitude subtraction.\n let cmp = 0\n\n if (xe != ye) {\n cmp = xe > ye ? 1 : -1\n } else if (xLen != yLen) {\n cmp = xLen > yLen ? 1 : -1\n } else {\n for (let i = 0; i < xLen; i++) {\n const xd = xc[i] ?? 0\n const yd = yc[i] ?? 0\n if (xd != yd) {\n cmp = xd > yd ? 1 : -1\n break\n }\n }\n }\n\n if (cmp === 0) {\n xc.length = 1\n xc[0] = 0\n x.e = 0\n x.s = 1\n return x\n }\n\n const ac = cmp > 0 ? xc : yc\n const ae = cmp > 0 ? xe : ye\n const al = cmp > 0 ? xLen : yLen\n const bc = cmp > 0 ? yc : xc\n const be = cmp > 0 ? ye : xe\n const bl = cmp > 0 ? yLen : xLen\n const resultSign = cmp > 0 ? xs : ys\n const alignedExponent = ae > be ? ae : be\n const shiftA = alignedExponent - ae\n const shiftB = alignedExponent - be\n const lenA = al + shiftA\n const lenB = bl + shiftB\n let len = lenA > lenB ? lenA : lenB\n let borrow = 0\n\n xc.length = len\n\n for (let i = len - 1; i >= 0; i--) {\n const ia = i - shiftA\n const ib = i - shiftB\n let da = ia >= 0 && ia < al ? (ac[ia] ?? 0) : 0\n const db = (ib >= 0 && ib < bl ? (bc[ib] ?? 0) : 0) + borrow\n\n if (da < db) {\n da += 10\n borrow = 1\n } else {\n borrow = 0\n }\n\n xc[i] = da - db\n }\n\n let head = 0\n while (head < len - 1 && xc[head] === 0) ++head\n\n if (head) {\n for (let i = 0; i < len - head; i++) xc[i] = xc[i + head] ?? 0\n len -= head\n }\n\n while (len > 1 && xc[len - 1] === 0) --len\n\n xc.length = len\n x.e = alignedExponent - head\n x.s = resultSign\n\n if (!xc[0]) {\n x.e = 0\n x.s = 1\n }\n\n return x\n};\n\n/*\n * Return a Big whose value is the value of this Big raised to the power n.\n * If n is negative, round to a maximum of Big.DP decimal places using rounding\n * mode Big.RM.\n *\n * n {number} Integer, -MAX_POWER to MAX_POWER inclusive.\n */\nP.pow = function (this: InternalBig, n: number): InternalBig {\n var x = this,\n one = new x.constructor('1'),\n y = one,\n isneg = n < 0;\n\n if (n !== ~~n || n < -MAX_POWER || n > MAX_POWER) {\n throw Error(INVALID + 'exponent');\n }\n\n if (isneg) n = -n;\n\n for (;;) {\n if (n & 1) y = y.times(x);\n n >>= 1;\n if (!n) break;\n x = x.times(x);\n }\n\n return isneg ? one.div(y) : y;\n};\n\nP._pow = function (this: InternalBig, n: number): InternalBig {\n var x = this,\n one = new x.constructor('1'),\n y = one,\n base = new x.constructor(x),\n isneg = n < 0;\n\n if (n !== ~~n || n < -MAX_POWER || n > MAX_POWER) {\n throw Error(INVALID + 'exponent');\n }\n\n if (isneg) n = -n;\n\n for (;;) {\n if (n & 1) y._times(base);\n n >>= 1;\n if (!n) break;\n base._times(base);\n }\n\n return isneg ? mutateFrom(x, one._div(y)) : mutateFrom(x, y);\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd\n * significant digits using rounding mode rm, or Big.RM if rm is not specified.\n *\n * sd {number} Significant digits: integer, 1 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.prec = function (this: InternalBig, sd: number, rm?: RoundingMode): InternalBig {\n if (sd !== ~~sd || sd < 1 || sd > MAX_DP) {\n throw Error(INVALID + 'precision');\n }\n return round(new this.constructor(this), sd, rm);\n};\n\nP._prec = function (this: InternalBig, sd: number, rm?: RoundingMode): InternalBig {\n if (sd !== ~~sd || sd < 1 || sd > MAX_DP) {\n throw Error(INVALID + 'precision');\n }\n return round(this, sd, rm);\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big rounded to a maximum of dp decimal places\n * using rounding mode rm, or Big.RM if rm is not specified.\n * If dp is negative, round to an integer which is a multiple of 10**-dp.\n * If dp is not specified, round to 0 decimal places.\n *\n * dp? {number} Integer, -MAX_DP to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.round = function (this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig {\n if (dp === UNDEFINED) dp = 0;\n else if (dp !== ~~dp || dp < -MAX_DP || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n return round(new this.constructor(this), dp + this.e + 1, rm);\n};\n\nP._round = function (this: InternalBig, dp?: number, rm?: RoundingMode): InternalBig {\n if (dp === UNDEFINED) dp = 0;\n else if (dp !== ~~dp || dp < -MAX_DP || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n return round(this, dp + this.e + 1, rm);\n};\n\n\n/*\n * Return a new Big whose value is the square root of the value of this Big, rounded, if\n * necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.\n */\nP.sqrt = function (this: InternalBig): InternalBig {\n var r: InternalBig, c: string, t: InternalBig,\n x = this,\n Big = x.constructor,\n sign = x.s,\n e = x.e,\n half = new Big('0.5'),\n s: number;\n\n // Zero?\n if (!x.c[0]) return new Big(x);\n\n // Negative?\n if (sign < 0) {\n throw Error(NAME + 'No square root');\n }\n\n // Estimate.\n s = Math.sqrt(+stringify(x, true, true));\n\n // Math.sqrt underflow/overflow?\n // Re-estimate: pass x coefficient to Math.sqrt as integer, then adjust the result exponent.\n if (s === 0 || s === 1 / 0) {\n c = x.c.join('');\n if (!(c.length + e & 1)) c += '0';\n s = Math.sqrt(+c);\n e = ((e + 1) / 2 | 0) - ((e < 0 || (e & 1) !== 0) ? 1 : 0);\n if (s == 1 / 0) {\n r = new Big('5e' + e);\n } else {\n c = s.toExponential();\n r = new Big(c.slice(0, c.indexOf('e') + 1) + e);\n }\n } else {\n r = new Big(s + '');\n }\n\n e = r.e + (Big.DP += 4);\n\n // Newton-Raphson iteration.\n do {\n t = r;\n r = half.times(t.plus(x.div(t)));\n } while (t.c.slice(0, e).join('') !== r.c.slice(0, e).join(''));\n\n return round(r, (Big.DP -= 4) + r.e + 1, Big.RM);\n};\n\nP._sqrt = function (this: InternalBig): InternalBig {\n var r: InternalBig, c: string, t: InternalBig,\n x = this,\n Big = x.constructor,\n sign = x.s,\n e = x.e,\n half = new Big('0.5'),\n s: number;\n\n // Zero?\n if (!x.c[0]) return x;\n\n // Negative?\n if (sign < 0) {\n throw Error(NAME + 'No square root');\n }\n\n // Estimate.\n s = Math.sqrt(+stringify(x, true, true));\n\n // Math.sqrt underflow/overflow?\n // Re-estimate: pass x coefficient to Math.sqrt as integer, then adjust the result exponent.\n if (s === 0 || s === 1 / 0) {\n c = x.c.join('');\n if (!(c.length + e & 1)) c += '0';\n s = Math.sqrt(+c);\n e = ((e + 1) / 2 | 0) - ((e < 0 || (e & 1) !== 0) ? 1 : 0);\n if (s == 1 / 0) {\n r = new Big('5e' + e);\n } else {\n c = s.toExponential();\n r = new Big(c.slice(0, c.indexOf('e') + 1) + e);\n }\n } else {\n r = new Big(s + '');\n }\n\n e = r.e + (Big.DP += 4);\n\n // Newton-Raphson iteration.\n do {\n t = r;\n r = half.times(t.plus(x.div(t)));\n } while (t.c.slice(0, e).join('') !== r.c.slice(0, e).join(''));\n\n return mutateFrom(x, round(r, (Big.DP -= 4) + r.e + 1, Big.RM));\n};\n\n\n/*\n * Return a new Big whose value is the value of this Big times the value of Big y.\n */\nP.times = P.mul = function (this: InternalBig, y: InternalSource): InternalBig {\n var c: number[],\n x = this,\n Big = x.constructor,\n xc = x.c,\n yBig = new Big(y),\n yc = yBig.c,\n a = xc.length,\n b = yc.length,\n i = x.e,\n j = yBig.e;\n\n // Determine sign of result.\n yBig.s = x.s == yBig.s ? 1 : -1;\n\n // Return signed 0 if either 0.\n if (!xc[0] || !yc[0]) {\n yBig.c = [yBig.e = 0];\n return yBig;\n }\n\n // Initialise exponent of result as x.e + y.e.\n yBig.e = i + j;\n\n // If array xc has fewer digits than yc, swap xc and yc, and lengths.\n if (a < b) {\n c = xc;\n xc = yc;\n yc = c;\n j = a;\n a = b;\n b = j;\n }\n\n // Initialise coefficient array of result with zeros.\n for (c = new Array(j = a + b); j--;) c[j] = 0;\n\n // Multiply.\n\n // i is initially xc.length.\n for (i = b; i--;) {\n b = 0;\n\n // a is yc.length.\n for (j = a + i; j > i;) {\n\n // Current sum of products at this digit position, plus carry.\n b = (c[j] ?? 0) + (yc[i] ?? 0) * (xc[j - i - 1] ?? 0) + b;\n c[j--] = b % 10;\n\n // carry\n b = b / 10 | 0;\n }\n\n c[j] = b;\n }\n\n // Increment result exponent if there is a final carry, otherwise remove leading zero.\n if (b) ++yBig.e;\n else c.shift();\n\n // Remove trailing zeros.\n for (i = c.length; !c[--i];) c.pop();\n yBig.c = c;\n\n return yBig;\n};\n\nP._times = P._mul = function (this: InternalBig, y: InternalSource): InternalBig {\n var c: number[],\n x = this,\n Big = x.constructor,\n xc = x.c,\n yBig = new Big(y),\n yc = yBig.c,\n a = xc.length,\n b = yc.length,\n i = x.e,\n j = yBig.e,\n sign: InternalSign = x.s == yBig.s ? 1 : -1;\n\n // Return signed 0 if either 0.\n if (!xc[0] || !yc[0]) {\n x.s = sign;\n x.c = [x.e = 0];\n return x;\n }\n\n // Initialise exponent of result as x.e + y.e.\n x.e = i + j;\n\n // If array xc has fewer digits than yc, swap xc and yc, and lengths.\n if (a < b) {\n c = xc;\n xc = yc;\n yc = c;\n j = a;\n a = b;\n b = j;\n }\n\n // Initialise coefficient array of result with zeros.\n for (c = new Array(j = a + b); j--;) c[j] = 0;\n\n // Multiply.\n\n // i is initially xc.length.\n for (i = b; i--;) {\n b = 0;\n\n // a is yc.length.\n for (j = a + i; j > i;) {\n\n // Current sum of products at this digit position, plus carry.\n b = (c[j] ?? 0) + (yc[i] ?? 0) * (xc[j - i - 1] ?? 0) + b;\n c[j--] = b % 10;\n\n // carry\n b = b / 10 | 0;\n }\n\n c[j] = b;\n }\n\n // Increment result exponent if there is a final carry, otherwise remove leading zero.\n if (b) ++x.e;\n else c.shift();\n\n // Remove trailing zeros.\n for (i = c.length; !c[--i];) c.pop();\n\n x.c = c;\n x.s = sign;\n\n return x;\n};\n\n\n/*\n * Return a string representing the value of this Big in exponential notation rounded to dp fixed\n * decimal places using rounding mode rm, or Big.RM if rm is not specified.\n *\n * dp? {number} Decimal places: integer, 0 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.toExponential = function (this: InternalBig, dp?: number, rm?: RoundingMode): string {\n var x = this,\n n = x.c[0];\n\n if (dp !== UNDEFINED) {\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n x = round(new x.constructor(x), ++dp, rm);\n for (; x.c.length < dp;) x.c.push(0);\n }\n\n return stringify(x, true, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big in normal notation rounded to dp fixed\n * decimal places using rounding mode rm, or Big.RM if rm is not specified.\n *\n * dp? {number} Decimal places: integer, 0 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n *\n * (-0).toFixed(0) is '0', but (-0.1).toFixed(0) is '-0'.\n * (-0).toFixed(1) is '0.0', but (-0.01).toFixed(1) is '-0.0'.\n */\nP.toFixed = function (this: InternalBig, dp?: number, rm?: RoundingMode): string {\n var x = this,\n n = x.c[0];\n\n if (dp !== UNDEFINED) {\n if (dp !== ~~dp || dp < 0 || dp > MAX_DP) {\n throw Error(INVALID_DP);\n }\n x = round(new x.constructor(x), dp + x.e + 1, rm);\n\n // x.e may have changed if the value is rounded up.\n for (dp = dp + x.e + 1; x.c.length < dp;) x.c.push(0);\n }\n\n return stringify(x, false, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big.\n * Return exponential notation if this Big has a positive exponent equal to or greater than\n * Big.PE, or a negative exponent equal to or less than Big.NE.\n * Omit the sign for negative zero.\n */\nP.toJSON = P.toString = function (this: InternalBig): string {\n var x = this,\n Big = x.constructor;\n return stringify(x, x.e <= Big.NE || x.e >= Big.PE, !!x.c[0]);\n};\n\nif (typeof Symbol !== \"undefined\") {\n P[Symbol.for('nodejs.util.inspect.custom')] = P.toJSON;\n}\n\n\n/*\n * Return the value of this Big as a primitive number.\n */\nP.toNumber = function (this: InternalBig): number {\n var n = +stringify(this, true, true);\n if (this.constructor.strict === true && !this.eq(n.toString())) {\n throw Error(NAME + 'Imprecise conversion');\n }\n return n;\n};\n\n/*\n * Return the value of this Big as a primitive bigint.\n */\nP.toBigInt = function (this: InternalBig): bigint {\n const integer = this.round(0, 0)\n\n if (!this.eq(integer)) {\n throw Error(NAME + 'BigInt conversion requires an integer value')\n }\n\n return BigInt(integer.toFixed(0))\n};\n\n\n/*\n * Return a string representing the value of this Big rounded to sd significant digits using\n * rounding mode rm, or Big.RM if rm is not specified.\n * Use exponential notation if sd is less than the number of digits necessary to represent\n * the integer part of the value in normal notation.\n *\n * sd {number} Significant digits: integer, 1 to MAX_DP inclusive.\n * rm? {number} Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).\n */\nP.toPrecision = function (this: InternalBig, sd?: number, rm?: RoundingMode): string {\n var x = this,\n Big = x.constructor,\n n = x.c[0];\n\n if (sd !== UNDEFINED) {\n if (sd !== ~~sd || sd < 1 || sd > MAX_DP) {\n throw Error(INVALID + 'precision');\n }\n x = round(new Big(x), sd, rm);\n for (; x.c.length < sd;) x.c.push(0);\n }\n\n return stringify(x, (sd !== UNDEFINED && sd <= x.e) || x.e <= Big.NE || x.e >= Big.PE, !!n);\n};\n\n\n/*\n * Return a string representing the value of this Big.\n * Return exponential notation if this Big has a positive exponent equal to or greater than\n * Big.PE, or a negative exponent equal to or less than Big.NE.\n * Include the sign for negative zero.\n */\nP.valueOf = function (this: InternalBig): string {\n var x = this,\n Big = x.constructor;\n if (Big.strict === true) {\n throw Error(NAME + 'valueOf disallowed');\n }\n return stringify(x, x.e <= Big.NE || x.e >= Big.PE, true);\n};\n\nconst Big = _Big_() as unknown as BigConstructor\nexport { Big }\nexport default Big\n"],"mappings":"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"}
package/dist/index.d.cts CHANGED
@@ -178,12 +178,34 @@ declare namespace Big {
178
178
  * Return a new Big whose value is the value of this Big negated.
179
179
  */
180
180
  neg(): Big;
181
+ /** Mutates this Big to its absolute value and returns this instance. */
182
+ _abs(): Big;
183
+ /** Mutates this Big to its negated value and returns this instance. */
184
+ _neg(): Big;
181
185
  /**
182
186
  * Returns a Big number whose value is the value of this Big number plus n.
183
187
  *
184
188
  * @throws `NaN` if n is invalid.
185
189
  */
186
190
  plus(n: BigSource): Big;
191
+ /** Mutates this Big to the provided source value and returns this instance. */
192
+ _set(n: BigSource): Big;
193
+ /** In-place alias for plus. */
194
+ _plus(n: BigSource): Big;
195
+ /** In-place alias for plus. */
196
+ _add(n: BigSource): Big;
197
+ /** In-place alias for minus. */
198
+ _minus(n: BigSource): Big;
199
+ /** In-place alias for minus. */
200
+ _sub(n: BigSource): Big;
201
+ /** In-place alias for times. */
202
+ _times(n: BigSource): Big;
203
+ /** In-place alias for times. */
204
+ _mul(n: BigSource): Big;
205
+ /** In-place variant of div. */
206
+ _div(n: BigSource): Big;
207
+ /** In-place variant of mod. */
208
+ _mod(n: BigSource): Big;
187
209
  /**
188
210
  * Returns a Big number whose value is the value of this Big number raised to the power exp.
189
211
  *
@@ -195,6 +217,8 @@ declare namespace Big {
195
217
  * Note: High value exponents may cause this method to be slow to return.
196
218
  */
197
219
  pow(exp: number): Big;
220
+ /** In-place variant of pow. */
221
+ _pow(exp: number): Big;
198
222
  /**
199
223
  * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd
200
224
  * significant digits using rounding mode rm, or Big.RM if rm is not specified.
@@ -205,6 +229,8 @@ declare namespace Big {
205
229
  * @throws `!Big.RM!` if rm is invalid.
206
230
  */
207
231
  prec(sd: number, rm?: RoundingMode): Big;
232
+ /** In-place variant of prec. */
233
+ _prec(sd: number, rm?: RoundingMode): Big;
208
234
  /**
209
235
  * Returns a Big number whose value is the value of this Big number rounded using rounding mode rm to a maximum of dp decimal places.
210
236
  *
@@ -214,6 +240,8 @@ declare namespace Big {
214
240
  * @throws `!Big.RM!` if rm is invalid.
215
241
  */
216
242
  round(dp?: number, rm?: RoundingMode): Big;
243
+ /** In-place variant of round. */
244
+ _round(dp?: number, rm?: RoundingMode): Big;
217
245
  /**
218
246
  * Returns a Big number whose value is the square root of this Big number.
219
247
  *
@@ -222,6 +250,8 @@ declare namespace Big {
222
250
  * @throws `NaN` if this Big number is negative.
223
251
  */
224
252
  sqrt(): Big;
253
+ /** In-place variant of sqrt. */
254
+ _sqrt(): Big;
225
255
  /**
226
256
  * Returns a Big number whose value is the value of this Big number minus n - alias for .minus().
227
257
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";kBAAkB,GAAA;EAAA,KACT,SAAA,8BAAuC,GAAA;EAD3B;;;EAAA,KAMZ,UAAA;EAkBsB;;;EAAA,KAbtB,YAAA;EAAA,UAEK,cAAA;IAmGC;;;;;;;;;;IAAA,KAxFH,KAAA,EAAO,SAAA,GAAY,GAAA;IA4IhB;;;;;;;;;;IAAA,CAhIN,KAAA,EAAO,SAAA,GAAY,GAAA;IAmLE;;;;;;;;;IAAA,IAxKlB,cAAA;IAsOsB;;;;;;;IA7N1B,EAAA;IA3CM;;;;IAgDN,EAAA;IAzBC;;;;;;IAgCD,EAAA;IAeA;;;;;;IARA,EAAA;IAmCM;;;;;;;IA3BN,MAAA;IAyCO;IAAH;;;;IAAA,SAjCK,SAAA;IA2CU;;;;IAAA,SAtCV,WAAA;IAkDH;;;;IAAA,SA7CG,aAAA;IAyDT;;;IAAA,SArDS,OAAA;IAAA,SAEA,GAAA,EAAK,cAAA;EAAA;EAAA,UAGR,GAAA;IA4DG;IA1DT,GAAA,IAAO,GAAA;IA0Dc;;;;;IApDrB,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAkEZ;;;;;IA5DP,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,UAAA;IAsEX;;;;;;;;;IA5DR,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAiFkB;;;;;IA3ErC,EAAA,CAAG,CAAA,EAAG,SAAA;IA4FN;;;;;IAtFA,EAAA,CAAG,CAAA,EAAG,SAAA;IAkGN;;;;;IA5FA,GAAA,CAAI,CAAA,EAAG,SAAA;IA2GyB;;;;;IArGhC,EAAA,CAAG,CAAA,EAAG,SAAA;IAuIN;;;;;IAjIA,GAAA,CAAI,CAAA,EAAG,SAAA;IAwJP;;;;;IAlJA,KAAA,CAAM,CAAA,EAAG,SAAA,GAAY,GAAA;IAgLpB;;AAAA;;;;;IAxKD,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IA6KR;;;;AAEnB;IAzKQ,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAyKH;;;IArKhB,GAAA,IAAO,GAAA;IAsKO;;;;AACtB;IAjKQ,IAAA,CAAK,CAAA,EAAG,SAAA,GAAY,GAAA;IAiKD;;;AAC3B;;;;;AAA6B;;IAvJrB,GAAA,CAAI,GAAA,WAAc,GAAA;IAgwC0C;;;;;;;;;IAtvC5D,IAAA,CAAK,EAAA,UAAY,EAAA,GAAK,YAAA,GAAe,GAAA;;;;;;;;;IASrC,KAAA,CAAM,EAAA,WAAa,EAAA,GAAK,YAAA,GAAe,GAAA;;;;;;;;IAQvC,IAAA,IAAQ,GAAA;;;;;;IAMR,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;;;;;;IAMnB,KAAA,CAAM,CAAA,EAAG,SAAA,GAAY,GAAA;;;;;;;;;;;;;;;IAerB,aAAA,CAAc,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;;;;;;;;;;IAkBhC,OAAA,CAAQ,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;;;;;;;;IAgB1B,WAAA,CAAY,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;IAS9B,QAAA;;;;;;;;IAQA,QAAA;;;;;;IAMA,QAAA;;;;;;;;;IASA,OAAA;;;;;;;;;IASA,MAAA;;;;IAIA,CAAA;;;;IAIA,CAAA;;;;IAIA,CAAA;EAAA;AAAA;AAAA,KAIH,GAAA,GAAM,GAAA,CAAI,GAAA;AAAA,KACV,cAAA,GAAiB,GAAA,CAAI,cAAA;AAAA,KAEd,SAAA,GAAY,GAAA,CAAI,SAAA;AAAA,KAChB,UAAA,GAAa,GAAA,CAAI,UAAA;AAAA,KACjB,YAAA,GAAe,GAAA,CAAI,YAAA;AAAA,KACnB,WAAA,GAAc,GAAA;AAAA,cAymCpB,GAAA,EAAgD,cAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":"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"}
package/dist/index.d.mts CHANGED
@@ -178,12 +178,34 @@ declare namespace Big {
178
178
  * Return a new Big whose value is the value of this Big negated.
179
179
  */
180
180
  neg(): Big;
181
+ /** Mutates this Big to its absolute value and returns this instance. */
182
+ _abs(): Big;
183
+ /** Mutates this Big to its negated value and returns this instance. */
184
+ _neg(): Big;
181
185
  /**
182
186
  * Returns a Big number whose value is the value of this Big number plus n.
183
187
  *
184
188
  * @throws `NaN` if n is invalid.
185
189
  */
186
190
  plus(n: BigSource): Big;
191
+ /** Mutates this Big to the provided source value and returns this instance. */
192
+ _set(n: BigSource): Big;
193
+ /** In-place alias for plus. */
194
+ _plus(n: BigSource): Big;
195
+ /** In-place alias for plus. */
196
+ _add(n: BigSource): Big;
197
+ /** In-place alias for minus. */
198
+ _minus(n: BigSource): Big;
199
+ /** In-place alias for minus. */
200
+ _sub(n: BigSource): Big;
201
+ /** In-place alias for times. */
202
+ _times(n: BigSource): Big;
203
+ /** In-place alias for times. */
204
+ _mul(n: BigSource): Big;
205
+ /** In-place variant of div. */
206
+ _div(n: BigSource): Big;
207
+ /** In-place variant of mod. */
208
+ _mod(n: BigSource): Big;
187
209
  /**
188
210
  * Returns a Big number whose value is the value of this Big number raised to the power exp.
189
211
  *
@@ -195,6 +217,8 @@ declare namespace Big {
195
217
  * Note: High value exponents may cause this method to be slow to return.
196
218
  */
197
219
  pow(exp: number): Big;
220
+ /** In-place variant of pow. */
221
+ _pow(exp: number): Big;
198
222
  /**
199
223
  * Return a new Big whose value is the value of this Big rounded to a maximum precision of sd
200
224
  * significant digits using rounding mode rm, or Big.RM if rm is not specified.
@@ -205,6 +229,8 @@ declare namespace Big {
205
229
  * @throws `!Big.RM!` if rm is invalid.
206
230
  */
207
231
  prec(sd: number, rm?: RoundingMode): Big;
232
+ /** In-place variant of prec. */
233
+ _prec(sd: number, rm?: RoundingMode): Big;
208
234
  /**
209
235
  * Returns a Big number whose value is the value of this Big number rounded using rounding mode rm to a maximum of dp decimal places.
210
236
  *
@@ -214,6 +240,8 @@ declare namespace Big {
214
240
  * @throws `!Big.RM!` if rm is invalid.
215
241
  */
216
242
  round(dp?: number, rm?: RoundingMode): Big;
243
+ /** In-place variant of round. */
244
+ _round(dp?: number, rm?: RoundingMode): Big;
217
245
  /**
218
246
  * Returns a Big number whose value is the square root of this Big number.
219
247
  *
@@ -222,6 +250,8 @@ declare namespace Big {
222
250
  * @throws `NaN` if this Big number is negative.
223
251
  */
224
252
  sqrt(): Big;
253
+ /** In-place variant of sqrt. */
254
+ _sqrt(): Big;
225
255
  /**
226
256
  * Returns a Big number whose value is the value of this Big number minus n - alias for .minus().
227
257
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";kBAAkB,GAAA;EAAA,KACT,SAAA,8BAAuC,GAAA;EAD3B;;;EAAA,KAMZ,UAAA;EAkBsB;;;EAAA,KAbtB,YAAA;EAAA,UAEK,cAAA;IAmGC;;;;;;;;;;IAAA,KAxFH,KAAA,EAAO,SAAA,GAAY,GAAA;IA4IhB;;;;;;;;;;IAAA,CAhIN,KAAA,EAAO,SAAA,GAAY,GAAA;IAmLE;;;;;;;;;IAAA,IAxKlB,cAAA;IAsOsB;;;;;;;IA7N1B,EAAA;IA3CM;;;;IAgDN,EAAA;IAzBC;;;;;;IAgCD,EAAA;IAeA;;;;;;IARA,EAAA;IAmCM;;;;;;;IA3BN,MAAA;IAyCO;IAAH;;;;IAAA,SAjCK,SAAA;IA2CU;;;;IAAA,SAtCV,WAAA;IAkDH;;;;IAAA,SA7CG,aAAA;IAyDT;;;IAAA,SArDS,OAAA;IAAA,SAEA,GAAA,EAAK,cAAA;EAAA;EAAA,UAGR,GAAA;IA4DG;IA1DT,GAAA,IAAO,GAAA;IA0Dc;;;;;IApDrB,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAkEZ;;;;;IA5DP,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,UAAA;IAsEX;;;;;;;;;IA5DR,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAiFkB;;;;;IA3ErC,EAAA,CAAG,CAAA,EAAG,SAAA;IA4FN;;;;;IAtFA,EAAA,CAAG,CAAA,EAAG,SAAA;IAkGN;;;;;IA5FA,GAAA,CAAI,CAAA,EAAG,SAAA;IA2GyB;;;;;IArGhC,EAAA,CAAG,CAAA,EAAG,SAAA;IAuIN;;;;;IAjIA,GAAA,CAAI,CAAA,EAAG,SAAA;IAwJP;;;;;IAlJA,KAAA,CAAM,CAAA,EAAG,SAAA,GAAY,GAAA;IAgLpB;;AAAA;;;;;IAxKD,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IA6KR;;;;AAEnB;IAzKQ,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;IAyKH;;;IArKhB,GAAA,IAAO,GAAA;IAsKO;;;;AACtB;IAjKQ,IAAA,CAAK,CAAA,EAAG,SAAA,GAAY,GAAA;IAiKD;;;AAC3B;;;;;AAA6B;;IAvJrB,GAAA,CAAI,GAAA,WAAc,GAAA;IAgwC0C;;;;;;;;;IAtvC5D,IAAA,CAAK,EAAA,UAAY,EAAA,GAAK,YAAA,GAAe,GAAA;;;;;;;;;IASrC,KAAA,CAAM,EAAA,WAAa,EAAA,GAAK,YAAA,GAAe,GAAA;;;;;;;;IAQvC,IAAA,IAAQ,GAAA;;;;;;IAMR,GAAA,CAAI,CAAA,EAAG,SAAA,GAAY,GAAA;;;;;;IAMnB,KAAA,CAAM,CAAA,EAAG,SAAA,GAAY,GAAA;;;;;;;;;;;;;;;IAerB,aAAA,CAAc,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;;;;;;;;;;IAkBhC,OAAA,CAAQ,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;;;;;;;;IAgB1B,WAAA,CAAY,EAAA,WAAa,EAAA,GAAK,YAAA;;;;;;;;;IAS9B,QAAA;;;;;;;;IAQA,QAAA;;;;;;IAMA,QAAA;;;;;;;;;IASA,OAAA;;;;;;;;;IASA,MAAA;;;;IAIA,CAAA;;;;IAIA,CAAA;;;;IAIA,CAAA;EAAA;AAAA;AAAA,KAIH,GAAA,GAAM,GAAA,CAAI,GAAA;AAAA,KACV,cAAA,GAAiB,GAAA,CAAI,cAAA;AAAA,KAEd,SAAA,GAAY,GAAA,CAAI,SAAA;AAAA,KAChB,UAAA,GAAa,GAAA,CAAI,UAAA;AAAA,KACjB,YAAA,GAAe,GAAA,CAAI,YAAA;AAAA,KACnB,WAAA,GAAc,GAAA;AAAA,cAymCpB,GAAA,EAAgD,cAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":"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"}