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