for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sergiors\Functional;
const lt = '\Sergiors\Functional\lt';
/**
* Less than
*
* @author Sérgio Rafael Siqueira <[email protected]>
* @return mixed
*/
function lt(/* ...$args */)
{
$args = func_get_args();
$lt = function ($a, $b) {
return $a < $b;
};
return call_user_func_array(partial($lt), $args);
}