Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BigNumber.php

function BigNumber::max

Returns the maximum of the given values.

@psalm-pure

Parameters

BigNumber|int|float|string ...$values The numbers to compare. All the numbers need to be convertible: to an instance of the class this method is called on.

Throws

\InvalidArgumentException If no values are given.

MathException If an argument is not valid.

File

vendor/brick/math/src/BigNumber.php, line 246

Class

BigNumber
Common interface for arbitrary-precision rational numbers.

Namespace

Brick\Math

Code

public static final function max(BigNumber|int|float|string ...$values) : static {
    $max = null;
    foreach ($values as $value) {
        $value = static::of($value);
        if ($max === null || $value->isGreaterThan($max)) {
            $max = $value;
        }
    }
    if ($max === null) {
        throw new \InvalidArgumentException(__METHOD__ . '() expects at least one value.');
    }
    return $max;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal