Number with an integer numerator and denominator.

Hierarchy

Implements

Constructors

  • Parameters

    • numerator: BigintIsh
    • Optional denominator: BigintIsh

    Returns Fraction

Properties

denominator: JSBI
isFraction: true

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

numerator: JSBI
ZERO: Fraction

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 Fraction

  • Compares this Fraction to the other Fraction.

    Parameters

    Returns 0 | 1 | -1

  • Divides this Fraction by another Fraction.

    Parameters

    Returns Fraction

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • Swaps the numerator and denominator of the Fraction.

    Returns

    Returns Fraction

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

  • Parameters

    Returns Fraction

  • JSON representation of the Fraction.

    Returns FractionObject

  • Parses a Fraction from a float.

    Returns

    Fraction

    Parameters

    • number: number

      Number to parse.

    • Optional decimals: number

      Number of decimals of precision. (default 10)

    Returns Fraction

  • Ensures the other object is of this Fraction type.

    Returns

    Parameters

    Returns Fraction

  • Returns true if the other object is a Fraction.

    Returns

    Parameters

    • other: unknown

    Returns other is Fraction

Generated using TypeDoc