Current path: home/webdevt/www/schtroumpf.fr/vendor/bjeavons/zxcvbn-php/src/Math/Impl/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/bjeavons/zxcvbn-php/src/Math
<?php
declare(strict_types=1);
namespace ZxcvbnPhp\Math\Impl;
class BinomialProviderPhp73Gmp extends AbstractBinomialProvider
{
/**
* @noinspection PhpElementIsNotAvailableInCurrentPhpVersionInspection
* @noinspection PhpComposerExtensionStubsInspection
*/
protected function calculate(int $n, int $k): float
{
return (float)gmp_strval(gmp_binomial($n, $k));
}
}