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/constants.php
<?php declare(strict_types=1); namespace Psl\Math; use const INF; use const NAN as PHP_NAN; /** * The value of `INFINITY` is `1 / 0` (positive infinity). * * @var int */ const INFINITY = INF; /** * The value of `NAN` is `0 / 0` (not a number). * * @var float */ const NAN = PHP_NAN; /** * The base of the natural system of logarithms, or approximately 2.7182818284590452353602875. * * @var float */ const E = 2.7182818284590452353602875; /** * The ratio of the circumference of a circle to its diameter, or approximately 3.141592653589793238462643. * * @var float */ const PI = 3.141592653589793238462643; /** * The maximum integer value representable in a 64-bit binary-coded decimal. * * @var int */ const INT64_MAX = 9223372036854775807; /** * The minimum integer value representable in a 64-bit binary-coded decimal. * * @var int */ const INT64_MIN = -1 << 63; /** * The maximum integer value representable in a 53-bit binary-coded decimal. * * @var int */ const INT53_MAX = 9007199254740992; /** * The minimum integer value representable in a 53-bit binary-coded decimal. * * @var int */ const INT53_MIN = -9007199254740993; /** * The maximum integer value representable in a 32-bit binary-coded decimal. * * @var int */ const INT32_MAX = 2147483647; /** * The minimum integer value representable in a 32-bit binary-coded decimal. * * @var int */ const INT32_MIN = -2147483648; /** * The maximum integer value representable in a 16-bit binary-coded decimal. * * @var int */ const INT16_MAX = 32767; /** * The minimum integer value representable in a 16-bit binary-coded decimal. * * @var int */ const INT16_MIN = -32768; /** * The maximum integer value representable in a 8-bit binary-coded decimal. * * @var int */ const INT8_MAX = 127; /** * The minimum integer value representable in a 8-bit binary-coded decimal. * * @var int */ const INT8_MIN = -128; /** * The maximum unsigned integer value representable in a 32-bit binary-coded decimal. * * @var int */ const UINT32_MAX = 4294967295; /** * The maximum unsigned integer value representable in a 16-bit binary-coded decimal. * * @var int */ const UINT16_MAX = 65535; /** * The maximum unsigned integer value representable in a 8-bit binary-coded decimal. * * @var int */ const UINT8_MAX = 255; /** * The maximum floating point value representable in a 32-bit binary-coded decimal. * * @var float */ const FLOAT32_MAX = 3.40282347E+38; /** * The minimum floating point value representable in a 32-bit binary-coded decimal. * * @var float */ const FLOAT32_MIN = -3.40282347E+38; /** * The maximum floating point value representable in a 64-bit binary-coded decimal. * * @var float */ const FLOAT64_MAX = 1.7976931348623157E+308; /** * The minimum floating point value representable in a 64-bit binary-coded decimal. * * @var float */ const FLOAT64_MIN = -1.7976931348623157E+308;
Copyright ©2021 || Defacer Indonesia