whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Math
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Math/sqrt.php
<?php declare(strict_types=1); namespace Psl\Math; use function sqrt as php_sqrt; /** * Returns the square root of the given number. * * @pure * * @throws Exception\InvalidArgumentException If $number is negative. */ function sqrt(float $number): float { if ($number < 0) { throw new Exception\InvalidArgumentException('$number must be a non-negative number.'); } return php_sqrt($number); }
Copyright ©2021 || Defacer Indonesia