for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Prelude;
const reduce = __NAMESPACE__.'\reduce';
function reduce(...$args)
{
$fn = partial(function (callable $fn, array $xss, $initial = null) {
return array_reduce($xss, $fn, $initial);
});
return $fn(...$args);
}