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