| class FMT_NUMBERS |
|---|
| **** | Formatting numbers. |
| BASE_FORMAT |
| digit( i: INT ): CHAR |
|---|
| **** | Print the digit represented be 'i'. Negative digits are considered as 'insignificant' digits and printed as zeros. |
| flt_fixed( f: $FLT, w: INT, d: INT, dotch: CHAR, |
|---|
| flt_fixed_exp( f: $FLT, w: INT, d: INT, force_sign: BOOL, |
|---|
| flt_free( f: $FLT, dotch: CHAR, force_sign: BOOL ): STR |
|---|
| **** | Prints the number in standard representation as precise as possible. Uses at least width digits for the integer part of the number and prints a '+' sign if force_sign = true and the number positive. |
| flt_free_exp( f: $FLT, dotch: CHAR, force_sign: BOOL, |
|---|
| int_normal( int: INT, width: INT, anchor: INT, base: INT, |
|---|
| int_precision( int: INT, width: INT, |
|---|