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