whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Type
/
Internal
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Type/Internal/F64Type.php
<?php declare(strict_types=1); namespace Psl\Type\Internal; use Psl\Type; use Psl\Type\Exception\AssertException; use Psl\Type\Exception\CoercionException; use function Psl\Type; /** * @ara-extends Type\Type<f64> * * @extends Type\Type<float> * * @internal */ final class F64Type extends Type\Type { /** * @ara-assert-if-true f64 $value * * @psalm-assert-if-true float $value */ public function matches(mixed $value): bool { return Type\float()->matches($value); } /** * @throws CoercionException * * @ara-return f64 * * @return float */ public function coerce(mixed $value): float { return Type\float() ->withTrace($this->getTrace()->withFrame($this->toString())) ->coerce($value); } /** * @ara-assert f64 $value * * @psalm-assert float $value * * @throws AssertException * * @ara-return f64 * * @return float */ public function assert(mixed $value): float { return Type\float()->assert($value); } public function toString(): string { return 'f64'; } }
Copyright ©2021 || Defacer Indonesia