whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Vec
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Vec/reproduce.php
<?php declare(strict_types=1); namespace Psl\Vec; use Closure; /** * Produce a list of values generated using the given factory. * * Example: * * Vec\reproduce(5, fn(int $i): int => $i * 2) * => Vec(2, 4, 6, 8, 10) * * @template T * * @param positive-int $size * @param (Closure(int): T) $factory * * @return non-empty-list<T> * * @psalm-suppress InvalidReturnType * @psalm-suppress InvalidReturnStatement */ function reproduce(int $size, Closure $factory): array { $result = []; for ($i = 1; $i <= $size; $i++) { $result[] = $factory($i); } return $result; }
Copyright ©2021 || Defacer Indonesia