This number primitive represents how much to exponentiate the mantissa by.
This number primitive represents the significant digits of the entire number.
Get the absolute value of the OnoeNum.
Rounds up the OnoeNum to the nearest integer. This operation is unsafe for numbers beyond 2^1024.
Rounds down the OnoeNum to the nearest integer. This operation is unsafe for numbers beyond 2^1024.
Get the logarithm of the OnoeNum object with the specified primitive number base.
Base of the logarithm as a primitive number
Get the logarithm of the OnoeNum object with a base of 10.
Calculates the reciprocal of the OnoeNum object (1/x).
Reverts the OnoeNum back to a primitive number.
For numbers beyond 2^1024, this will return math.huge.
Calculates the nth root of the OnoeNum object.
Root to calculate (e.g., 2 for square root, 3 for cube root)
Rounds the OnoeNum to the nearest integer. This operation is unsafe for numbers beyond 2^1024.
Converts the SerikaNum tuple into a string in scientific notation format.
Resulting string
Converts the SerikaNum tuple into a single primitive number that represents the magnitude of the number. This method should only be used for leaderboards and other things that do not require the specific number itself as the resulting single numbers are highly inaccurate.
Resulting single number
Converts the OnoeNum object into a string with the specified mode. If suffix is used, this method is equivalent to OnoeNum.toSuffix. If scientific is used, this method is equivalent to OnoeNum.toScientific.
Optionalmode: "suffix" | "scientific"Mode of conversion to string
Resulting string
Converts the OnoeNum into a string with a number and suffix. Use the Suffixer.changeSuffixes method to edit the suffixes. If a suffix for the specified OnoeNum tuple is not found, scientific notation is used.
Resulting string
Flips the sign of the OnoeNum object. Equivalent to multiplying by -1.
Wrapper library for SerikaNum.