BigNumber
Common interface for arbitrary-precision rational numbers.
- Full name:
\Brick\Math\BigNumber
- This class implements:
\Serializable
,\JsonSerializable
- This class is an Abstract class
Constants
Constant | Visibility | Type | Value |
---|---|---|---|
PARSE_REGEXP |
private | '/^' . '(?<sign>[-+])?' . '(?:' . '(?:' . '(?<integral>[0-9]+)?' . '(?<point>.)?' . '(?<fractional>[0-9]+)?' . '(?:eE)?' . ') |
Methods
of
Creates a BigNumber of the given value.
The concrete return type is dependent on the given value, with the following rules:
- BigNumber instances are returned as is
- integer numbers are returned as BigInteger
- floating point numbers are converted to a string then parsed as such
- strings containing a
/
character are returned as BigRational - strings containing a
.
character or using an exponential notation are returned as BigDecimal -
strings containing only digits with an optional leading
+
or-
sign are returned as BigInteger -
This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$value |
\Brick\Math\BigNumber|int|float|string |
Throws:
If the format of the number is not valid.
If the value represents a rational number with a denominator of zero.
floatToString
Safely converts float to string, avoiding locale-dependent issues.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$float |
float |
See Also:
- https://github.com/brick/math/pull/20 -
min
Returns the minimum of the given values.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$values |
\Brick\Math\BigNumber|int|float|string | The numbers to compare. All the numbers need to be convertible to an instance of the class this method is called on. |
Throws:
If no values are given.
If an argument is not valid.
max
Returns the maximum of the given values.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$values |
\Brick\Math\BigNumber|int|float|string | The numbers to compare. All the numbers need to be convertible to an instance of the class this method is called on. |
Throws:
If no values are given.
If an argument is not valid.
sum
Returns the sum of the given values.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$values |
\Brick\Math\BigNumber|int|float|string | The numbers to add. All the numbers need to be convertible to an instance of the class this method is called on. |
Throws:
If no values are given.
If an argument is not valid.
add
Adds two BigNumber instances in the correct order to avoid a RoundingNecessaryException.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$a |
\Brick\Math\BigNumber | |
$b |
\Brick\Math\BigNumber |
cleanUp
Removes optional leading zeros and + sign from the given number.
- This method is static.
Parameters:
Parameter | Type | Description |
---|---|---|
$number |
string | The number, validated as a non-empty string of digits with optional leading sign. |
isEqualTo
Checks if this number is equal to the given one.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
isLessThan
Checks if this number is strictly lower than the given one.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
isLessThanOrEqualTo
Checks if this number is lower than or equal to the given one.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
isGreaterThan
Checks if this number is strictly greater than the given one.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
isGreaterThanOrEqualTo
Checks if this number is greater than or equal to the given one.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
isZero
Checks if this number equals zero.
isNegative
Checks if this number is strictly negative.
isNegativeOrZero
Checks if this number is negative or zero.
isPositive
Checks if this number is strictly positive.
isPositiveOrZero
Checks if this number is positive or zero.
getSign
Returns the sign of this number.
- This method is abstract.
Return Value:
-1 if the number is negative, 0 if zero, 1 if positive.
compareTo
Compares this number to the given one.
- This method is abstract.
Parameters:
Parameter | Type | Description |
---|---|---|
$that |
\Brick\Math\BigNumber|int|float|string |
Return Value:
[-1,0,1] If $this
is lower than, equal to, or greater than $that
.
Throws:
If the number is not valid.
toBigInteger
Converts this number to a BigInteger.
- This method is abstract.
Throws:
If this number cannot be converted to a BigInteger without rounding.
toBigDecimal
Converts this number to a BigDecimal.
- This method is abstract.
Throws:
If this number cannot be converted to a BigDecimal without rounding.
toBigRational
Converts this number to a BigRational.
- This method is abstract.
toScale
Converts this number to a BigDecimal with the given scale, using rounding if necessary.
- This method is abstract.
Parameters:
Parameter | Type | Description |
---|---|---|
$scale |
int | The scale of the resulting BigDecimal . |
$roundingMode |
int | A RoundingMode constant. |
Throws:
If this number cannot be converted to the given scale without rounding. This only applies when RoundingMode::UNNECESSARY is used.
toInt
Returns the exact value of this number as a native integer.
If this number cannot be converted to a native integer without losing precision, an exception is thrown. Note that the acceptable range for an integer depends on the platform and differs for 32-bit and 64-bit.
- This method is abstract.
Throws:
If this number cannot be exactly converted to a native integer.
toFloat
Returns an approximation of this number as a floating-point value.
Note that this method can discard information as the precision of a floating-point value is inherently limited.
If the number is greater than the largest representable floating point number, positive infinity is returned. If the number is less than the smallest representable floating point number, negative infinity is returned.
- This method is abstract.
__toString
Returns a string representation of this number.
The output of this method can be parsed by the of()
factory method;
this will yield an object equal to this one, without any information loss.
- This method is abstract.
jsonSerialize
Automatically generated on 2025-03-18