moontoast / math

A PHP 5.3+ mathematics library, providing functionality for large numbers
Apache License 2.0
247 stars 31 forks source link

Immutable BigNumber #1

Open rande opened 10 years ago

rande commented 10 years ago

Hello,

I would like to use this library on the sonata-project, however the BigNumber class is mutable, I would like to introduce a new ImmutableBigNumber class.

What do you think ?

ramsey commented 10 years ago

The BigNumber class is mutable because it has mathematical operations that may be performed against it, changing its value. What are you thoughts on how the immutable version of the class would work?

rande commented 10 years ago

see #2