Separate integer decimal value to string conversion with next two styles:
- Integer style is set as a default output style.
I.e. Decimal64.fromLong(12345).toString() produce "12345" - Add toFloatString() function for the ".0" suffix for integer decimal values.
I.e. Decimal64.fromLong(12345).toFloatString() produce "12345.0"