Giter Site home page Giter Site logo

Comments (2)

BenMorel avatar BenMorel commented on August 28, 2024 1

Hi! 👋

IIRC correctly my first decimal implementation was called Decimal, but I later decided to match Java's BigInteger and BigDecimal classes.

It looks like these names are industry standard these days: Java, Ruby, maybe others.

Also, I think I had fears that integer might become a reserved word at some point, in the light of early scalar type hinting discussions; this could have become a problem, just like you cannot create a String class anymore in PHP 7. It looks like this threat is over now though.

I'm not strongly against your suggestion, but I feel like Big makes easier the distinction between a class that would rely on native type capabilities (like, a 64 bits Integer), and a class specifically designed to deal with arbitrary-size numbers.

Usually, when you encounter a Big-Something, you know that you're dealing with an arbitrary-size number; when you encounter Decimal or Integer, you're unsure.

Oh, and it gives more visibility to the library for people coming from a Java background :)
(try Googling BigInteger php)

By the way, there may be some usefulness in creating lighter weight classes based on native types. I'm thinking specifically of this Decimal class that I created in another library to support validation of numbers in forms, without adding a dependency on brick/math's BigDecimal (numbers in forms rarely, if ever, exceed 20 digits, and I noticed that some browsers use floating-point numbers to validate them anyway, so this limitation in precision is quite acceptable).

Right now this Decimal class is internal to the library in question, but could very well be extracted in another library if that's useful. This may be a point against your suggestion, if they're ever going to coexist in some project.

Happy to hear your thoughts!

from math.

BenMorel avatar BenMorel commented on August 28, 2024

I'm going to close this issue due to lack of feedback.
Please feel free to resume the discussion if needed!

from math.

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.