View source
enum abstract BigIntError(String)
package haxe.math.bigint
to String
Available on all platforms
Variables
inlineread onlyBUFFER_TOO_SMALL:BigIntError = "Buffer too small"
An output buffer was too small to hold the result.
inlineread onlyDIVISION_BY_ZERO:BigIntError = "Division by zero"
An attempt was made to divide by zero.
inlineread onlyEVEN_VALUES:BigIntError = "Both values are even"
An operation required at least one odd number, but both were even.
inlineread onlyINVALID_ARGUMENT:BigIntError = "Invalid argument"
An argument provided to a function was not valid.
inlineread onlyINVALID_OPERATION:BigIntError = "Invalid operation"
An operation was performed that is not valid.
inlineread onlyNEGATIVE_EXPONENT:BigIntError = "Negative exponent"
An exponent was negative where not supported.
inlineread onlyNEGATIVE_MODULUS:BigIntError = "Modulus should be positive"
A modulus was negative where it must be positive.