Skip to content

1.0.3 Add toFloatString() function and restore toString() style

Latest
Compare
Choose a tag to compare
@agdavydov81 agdavydov81 released this 12 Apr 12:15
· 10 commits to master since this release

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"