SerikaNum
    Preparing search index...

    Interface BaseOnoeNum

    The base version of an OnoeNum object, stripped of its metatables and metamethods. This type commonly appears when sending OnoeNum objects over the client-server boundary or saving it in datastores.

    {mantissa: 5.22, exponent: 4} // This represents 5.22 * 10^4, or 52200.
    
    interface BaseOnoeNum {
        exponent: number;
        mantissa: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    exponent: number

    This number primitive represents how much to exponentiate the mantissa by.

    mantissa: number

    This number primitive represents the significant digits of the entire number.