예제 #1
0
파일: colander.php 프로젝트: netom/colander
function fIsBool()
{
    return function ($d) {
        return isBool($d);
    };
}
예제 #2
0
/**
 * @return \Closure
 */
function isNotBool()
{
    return negate(isBool());
}