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