Writes the string representation of the given Decimal256 to the specified CharSink. The output format is a plain decimal string without scientific notation. @param sink the CharSink to write to
(@NotNull CharSink<?> sink, long hh, long hl, long lh, long ll, int scale)
| 762 | * @param sink the CharSink to write to |
| 763 | */ |
| 764 | public static void toSink(@NotNull CharSink<?> sink, long hh, long hl, long lh, long ll, int scale) { |
| 765 | toSink(sink, hh, hl, lh, ll, scale, MAX_SCALE); |
| 766 | } |
| 767 | |
| 768 | /** |
| 769 | * Writes the string representation of the given Decimal256 to the specified CharSink. |