base-formatter
    Preparing search index...

    Interface NumeralOutput

    The numeral output of the BaseConverter.encode method.

    interface NumeralOutput {
        exponent: number;
        fraction: number[];
        integer: number[];
        isNegative: boolean;
    }
    Index

    Properties

    exponent: number

    The exponent of the number.

    fraction: number[]

    The fraction part of the number.

    integer: number[]

    The integer part of the number.

    isNegative: boolean

    Whether the number is negative.