Giter VIP home page Giter VIP logo

Comments (4)

robinp avatar robinp commented on May 4, 2024 1

Well, better than Float, that's true. Depends on the domain of currency supported. Wikipedia says Double is fine up to ~15-17 significant digits, so you can pile up a pretty nice sum of money before it gets problematic.

λ (read "1500000000000.3456") :: Double
1.5000000000003457e12

Feel free to close if not a concern.

from duckling.

patapizza avatar patapizza commented on May 4, 2024

Hi @robinp,
As far as I'm aware of, the lowest subdivision for currencies is 1/1000, which shouldn't be a problem for Double.
Do you have a specific example that does not work?

from duckling.

patapizza avatar patapizza commented on May 4, 2024

Yes, let's close this for now.

from duckling.

axman6 avatar axman6 commented on May 4, 2024

If you're going to talk about decimal numbers, the Scientific type is generally a much better option than Double, as they're stored as an integer + base 10 exponent already. This is already used in the Aeson library, so doesn't add any actual new deps - there's no reason a tool like this should fail with the above examples

Prelude> import Data.Scientific
Prelude Data.Scientific> (read "1500000000000.3456") :: Double
1.5000000000003457e12
Prelude Data.Scientific> (read "1500000000000.3456") :: Scientific 
1.5000000000003456e12

from duckling.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.