for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Collections\Iterator;
class LazyMapWithKeyIterator extends LazyMapIterator
{
public function current()
$fn = $this->fn;
return $fn($this->it->key(), $this->it->current());
}