mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
27 lines
642 B
PHP
27 lines
642 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Iter;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Iter;
|
|
use Psl\Str;
|
|
|
|
final class PullWithKeyTest extends TestCase
|
|
{
|
|
public function testPull(): void
|
|
{
|
|
$result = Iter\pull_with_key(
|
|
Iter\range(0, 10),
|
|
static fn ($k, $v) => Str\chr($v + $k + 65),
|
|
static fn ($k, $v) => 2 ** ($v + $k)
|
|
);
|
|
|
|
static::assertSame([
|
|
1 => 'A', 4 => 'C', 16 => 'E', 64 => 'G', 256 => 'I', 1024 => 'K',
|
|
4096 => 'M', 16384 => 'O', 65536 => 'Q', 262144 => 'S', 1048576 => 'U'
|
|
], Iter\to_array_with_keys($result));
|
|
}
|
|
}
|