interface Big {
    c: number[];
    e: number;
    s: number;
    abs(): Big;
    add(n: BigSource): Big;
    cmp(n: BigSource): Comparison;
    div(n: BigSource): Big;
    eq(n: BigSource): boolean;
    gt(n: BigSource): boolean;
    gte(n: BigSource): boolean;
    lt(n: BigSource): boolean;
    lte(n: BigSource): boolean;
    minus(n: BigSource): Big;
    mod(n: BigSource): Big;
    mul(n: BigSource): Big;
    neg(): Big;
    plus(n: BigSource): Big;
    pow(exp: number): Big;
    prec(sd: number, rm?: RoundingMode): Big;
    round(dp?: number, rm?: RoundingMode): Big;
    sqrt(): Big;
    sub(n: BigSource): Big;
    times(n: BigSource): Big;
    toExponential(dp?: number, rm?: RoundingMode): string;
    toFixed(dp?: number, rm?: RoundingMode): string;
    toJSON(): string;
    toNumber(): number;
    toPrecision(sd?: number, rm?: RoundingMode): string;
    toString(): string;
    valueOf(): string;
}

Properties

c: number[]

Returns an array of single digits

e: number

Returns the exponent, Integer, -1e+6 to 1e+6 inclusive

s: number

Returns the sign, -1 or 1

Methods

  • Returns a Big number whose value is the absolute value, i.e. the magnitude, of this Big number.

    Returns Big

  • Returns a Big number whose value is the value of this Big number plus n - alias for .plus().

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • Compare the values.

    Parameters

    • n: BigSource

    Returns Comparison

    NaN if n is invalid.

  • Returns a Big number whose value is the value of this Big number divided by 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.

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

    ±Infinity on division by zero.

    NaN on division of zero by zero.

  • Returns true if the value of this Big equals the value of n, otherwise returns false.

    Parameters

    • n: BigSource

    Returns boolean

    NaN if n is invalid.

  • Returns true if the value of this Big is greater than the value of n, otherwise returns false.

    Parameters

    • n: BigSource

    Returns boolean

    NaN if n is invalid.

  • Returns true if the value of this Big is greater than or equal to the value of n, otherwise returns false.

    Parameters

    • n: BigSource

    Returns boolean

    NaN if n is invalid.

  • Returns true if the value of this Big is less than the value of n, otherwise returns false.

    Parameters

    • n: BigSource

    Returns boolean

    NaN if n is invalid.

  • Returns true if the value of this Big is less than or equal to the value of n, otherwise returns false.

    Parameters

    • n: BigSource

    Returns boolean

    NaN if n is invalid.

  • Returns a Big number whose value is the value of this Big number minus n.

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • 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.

    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.

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is negative or otherwise invalid.

  • Returns a Big number whose value is the value of this Big number times n - alias for .times().

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • Return a new Big whose value is the value of this Big negated.

    Returns Big

  • Returns a Big number whose value is the value of this Big number plus n.

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • Returns a Big number whose value is the value of this Big number raised to the power exp.

    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.

    Parameters

    • exp: number

      The power to raise the number to, -1e+6 to 1e+6 inclusive

    Returns Big

    !pow! if exp is invalid.

    Note: High value exponents may cause this method to be slow to return.

  • Return a new Big whose value is the value of this Big rounded to a maximum precision of sd significant digits using rounding mode rm, or Big.RM if rm is not specified.

    Parameters

    • sd: number

      Significant digits: integer, 1 to MAX_DP inclusive.

    • Optionalrm: RoundingMode

      Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).

    Returns Big

    !prec! if sd is invalid.

    !Big.RM! if rm is invalid.

  • 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.

    Parameters

    • Optionaldp: number

      Decimal places, 0 to 1e+6 inclusive

    • Optionalrm: RoundingMode

      Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).

    Returns Big

    !round! if dp is invalid.

    !Big.RM! if rm is invalid.

  • Returns a Big number whose value is the square root of this Big number.

    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.

    Returns Big

    NaN if this Big number is negative.

  • Returns a Big number whose value is the value of this Big number minus n - alias for .minus().

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • Returns a Big number whose value is the value of this Big number times n.

    Parameters

    • n: BigSource

    Returns Big

    NaN if n is invalid.

  • Returns a string representing the value of this Big number in exponential notation to a fixed number of decimal places dp.

    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, the return value will be rounded to dp decimal places using rounding mode Big.RM.

    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.

    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.

    Parameters

    • Optionaldp: number

      Decimal places, 0 to 1e+6 inclusive

    • Optionalrm: RoundingMode

      Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).

    Returns string

    !toFix! if dp is invalid.

  • Returns a string representing the value of this Big number in normal notation to a fixed number of decimal places dp.

    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, the return value will be rounded to dp decimal places using rounding mode Big.RM.

    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.

    Unlike Number.prototype.toFixed, which returns exponential notation if a number is greater or equal to 1021, this method will always return normal notation.

    If dp is omitted, or is null or undefined, then the return value is simply the value in normal notation. This is also unlike Number.prototype.toFixed, which returns the value to zero decimal places.

    Parameters

    • Optionaldp: number

      Decimal places, 0 to 1e+6 inclusive

    • Optionalrm: RoundingMode

      Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).

    Returns string

    !toFix! if dp is invalid.

  • Returns a string representing the value of this Big number.

    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.

    The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.

    Returns string

  • Returns a primitive number representing the value of this Big number.

    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.

    Returns number

    6.0

  • Returns a string representing the value of this Big number to the specified number of significant digits sd.

    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.

    If the value of this Big number has fewer digits than is specified by sd, the return value will be appended with zeros accordingly.

    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.

    If sd is omitted, or is null or undefined, then the return value is the same as .toString().

    Parameters

    • Optionalsd: number

      Significant digits, 1 to 1e+6 inclusive

    • Optionalrm: RoundingMode

      Rounding mode: 0 (down), 1 (half-up), 2 (half-even) or 3 (up).

    Returns string

    !toPre! if sd is invalid.

  • Returns a string representing the value of this Big number.

    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.

    The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.

    Returns string

  • Returns a string representing the value of this Big number.

    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.

    The point at which toString returns exponential rather than normal notation can be adjusted by changing the value of Big.E_POS and Big.E_NEG. By default, Big numbers correspond to Javascript's number type in this regard.

    Returns string