for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Prelude;
const lte = __NAMESPACE__.'\lte';
function lte($x): \Closure
{
return function ($y) use ($x): bool {
return $x <= $y;
};
}