T🐜
Size: a a a
T🐜
ВС
T🐜
T🐜
VM
АС
T🐜
LS
T🐜
T🐜
D
T🐜
ВС
/**
* Performs an equal comparison
*
* @param mixed $b the value to compare to
*
* @return callable the function to perform the comparison
* @no-named-arguments
*/
function equal($b)
{
return function ($a) use ($b) {
return $a == $b;
};
}
ON