Neos\Eel\Helper\MathHelper::min PHP Method

min() public method

public min ( float $x = null, float $y_ = null ) : float
$x float A number
$y_ float Optional variable list of additional numbers
return float The smallest of the given numbers (zero or more)
    public function min($x = null, $y_ = null)
    {
        $arguments = func_get_args();
        if ($arguments !== []) {
            return call_user_func_array('min', func_get_args());
        } else {
            return INF;
        }
    }