for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Prelude;
const none = __NAMESPACE__.'\none';
function none(callable $pred): \Closure
{
return function (array $xss) use ($pred) {
return -1 === find($pred)($xss);
};
}