Skip to content

float_invert

Floating Point Numbers (XFL)
  • Inverts a float representation.
  • Return a inverted float as a bigint or an ErrorCode
int64_t float_invert (
int64_t float1
);
int64_t still_one =
float_invert(float_one());
NameTypeDescription
float1int64_tAn XFL floating point enclosing number
TypeDescription
int64_t

The XFL (xls17) enclosing number

If negative, an error:
INVALID_FLOAT
- the supplied parameter was not a valid XFL enclosing number or the division resulted in an XFL that cannot be represented.

DIVISION_BY_ZERO
- the supplied parameter was zero.