for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ivory\Value\Alg;
use Ivory\Relation\ITuple;
class CallbackTupleEqualizer extends CallbackAlg implements ITupleEqualizer
{
public function equal(ITuple $first, ITuple $second): bool
return $this->call($first, $second);
}