whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Dict
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Dict/intersect.php
<?php declare(strict_types=1); namespace Psl\Dict; use Psl\Iter; use Psl\Vec; use function array_intersect; /** * Computes the intersection of iterables. * * @template Tk of array-key * @template Tv * * @param iterable<Tk, Tv> $first * @param iterable<Tk, mixed> $second * @param iterable<Tk, mixed> ...$rest * * @return array<Tk, Tv> */ function intersect(iterable $first, iterable $second, iterable ...$rest): array { if (Iter\is_empty($first)) { return []; } return array_intersect(from_iterable($first), from_iterable($second), ...Vec\map( $rest, /** * @param iterable<Tk, Tv> $iterable * * @return array<Tk, Tv> */ static fn(iterable $iterable): array => from_iterable($iterable) )); }
Copyright ©2021 || Defacer Indonesia