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/MutableMapType.php
<?php declare(strict_types=1); namespace Psl\Type\Internal; use Psl\Collection; use Psl\Dict; use Psl\Str; use Psl\Type; use Psl\Type\Exception\AssertException; use Psl\Type\Exception\CoercionException; use function is_iterable; use function is_object; /** * @template Tk of array-key * @template Tv * * @extends Type\Type<Collection\MutableMapInterface<Tk, Tv>> * * @internal */ final class MutableMapType extends Type\Type { /** * @param Type\TypeInterface<Tk> $key_type * @param Type\TypeInterface<Tv> $value_type */ public function __construct( private readonly Type\TypeInterface $key_type, private readonly Type\TypeInterface $value_type ) { } /** * @throws CoercionException * * @return Collection\MutableMapInterface<Tk, Tv> */ public function coerce(mixed $value): Collection\MutableMapInterface { if (is_iterable($value)) { $key_trace = $this->getTrace()->withFrame( Str\format('%s<%s, _>', Collection\MutableMapInterface::class, $this->key_type->toString()) ); $value_trace = $this->getTrace()->withFrame( Str\format('%s<_, %s>', Collection\MutableMapInterface::class, $this->value_type->toString()) ); /** @var Type\Type<Tk> $key_type */ $key_type = $this->key_type->withTrace($key_trace); /** @var Type\Type<Tv> $value_type */ $value_type = $this->value_type->withTrace($value_trace); /** @var list<array{Tk, Tv}> $entries */ $entries = []; /** * @var Tk $k * @var Tv $v */ foreach ($value as $k => $v) { $entries[] = [ $key_type->coerce($k), $value_type->coerce($v), ]; } $dict = Dict\from_entries($entries); /** @var Collection\MutableMap<Tk, Tv> */ return new Collection\MutableMap($dict); } throw CoercionException::withValue($value, $this->toString(), $this->getTrace()); } /** * @throws AssertException * * @return Collection\MutableMapInterface<Tk, Tv> * * @psalm-assert Collection\MutableMapInterface<Tk, Tv> $value */ public function assert(mixed $value): Collection\MutableMapInterface { if (is_object($value) && $value instanceof Collection\MutableMapInterface) { $key_trace = $this->getTrace()->withFrame( Str\format('%s<%s, _>', Collection\MutableMapInterface::class, $this->key_type->toString()) ); $value_trace = $this->getTrace()->withFrame( Str\format('%s<_, %s>', Collection\MutableMapInterface::class, $this->value_type->toString()) ); /** @var Type\Type<Tk> $key_type */ $key_type = $this->key_type->withTrace($key_trace); /** @var Type\Type<Tv> $value_type */ $value_type = $this->value_type->withTrace($value_trace); /** @var list<array{Tk, Tv}> $entries */ $entries = []; /** * @var Tk $k * @var Tv $v */ foreach ($value as $k => $v) { $entries[] = [ $key_type->assert($k), $value_type->assert($v), ]; } $dict = Dict\from_entries($entries); /** @var Collection\MutableMap<Tk, Tv> */ return new Collection\MutableMap($dict); } throw AssertException::withValue($value, $this->toString(), $this->getTrace()); } public function toString(): string { return Str\format( '%s<%s, %s>', Collection\MutableMapInterface::class, $this->key_type->toString(), $this->value_type->toString(), ); } }
Copyright ©2021 || Defacer Indonesia