Serializable representation of a Percent.

Hierarchy

Implements

Constructors

  • Parameters

    • numerator: BigintIsh
    • Optional denominator: BigintIsh

    Returns Percent

Properties

denominator: JSBI
isFraction: true

This boolean checks to see if this is actually a Fraction.

isPercent: true

This boolean prevents a fraction from being interpreted as a Percent

numerator: JSBI
ONE: Percent

1%

ONE_HUNDRED: Percent

100% (1/1)

ZERO: Percent

Zero percent.

Accessors

  • get asFraction(): Fraction
  • Helper method for converting any super class back to a fraction

    Returns Fraction

  • get denominatorStr(): string
  • Fraction denominator.

    Returns string

  • get numeratorStr(): string
  • Fraction numerator.

    Returns string

  • get quotient(): JSBI
  • Performs floor division.

    Returns JSBI

  • get remainder(): Fraction
  • Remainder after floor division.

    Returns Fraction

Methods

  • Parameters

    Returns Percent

  • Compares this Fraction to the other Fraction.

    Parameters

    Returns 0 | 1 | -1

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • Swaps the numerator and denominator of the Percent.

    Returns

    Returns Percent

  • Returns true if this number (the numerator) is not equal to zero.

    Returns

    Returns boolean

  • Returns true if this number (the numerator) is equal to zero and the denominator is non-zero.

    Returns

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    Returns Percent

  • Parameters

    Returns Percent

  • Parses a Percent from a given number of bps.

    Returns

    Percent

    Parameters

    • bps: BigintIsh

    Returns Percent

  • Creates a Percent from a Fraction.

    Parameters

    Returns Percent

  • Parses a Percent from a float.

    Returns

    Percent

    Parameters

    • number: number

      Number to parse. (100% is 1.00)

    • Optional decimals: number

      Number of decimals of precision. (default 10)

    Returns Percent

  • Returns true if the other object is a Fraction.

    Returns

    Parameters

    • other: unknown

    Returns other is Fraction

  • Returns true if the other object is a Percent.

    Returns

    Parameters

    • other: unknown

    Returns other is Percent

Generated using TypeDoc