Coder Social home page Coder Social logo

Comments (4)

BenMorel avatar BenMorel commented on July 21, 2024 1

Did you notice that there is support already for base [2-36] in parse() and toBase()?

You can parse a string in base 16:

$i = BigInteger::parse('123456ABCDEF', 16);
echo $i; // 20016001699311
echo $i->toBase(16); // 123456abcdef

But internally the BigInteger is always in base 10. What are you trying to achieve that you cannot do with the current BigInteger? You originally mentioned BigDecimal, but the link you gave is for BigInteger.

Can you give me an example of the operations you want to run, and what result you expect?

from math.

BenMorel avatar BenMorel commented on July 21, 2024

Hi, classes are final to avoid giving access to the protected constructor. The main reason being, if I have to change a protected function in a non-final class, this is considered a BC break, and following semver, this would require releasing a new major version.

This is not (yet) a big deal as v1.0 is not released yet, but I'm interested to know more about your use case, maybe this is something we could add to the library?

from math.

yadakhov avatar yadakhov commented on July 21, 2024

I'm trying to use base 16 instead of base 10.

Similar to https://github.com/pear/Math_BigInteger/blob/trunk/Math/BigInteger.php#L259. Note the second parameter is the base.

You are correct. Changing the final keyword is a BC break. I'll just fork and create my own version.

Thanks.

from math.

yadakhov avatar yadakhov commented on July 21, 2024

BigInteger::parse('123456ABCDEF', 16); solves it for me.

Thanks.

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.