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 CallbackTupleHasher extends CallbackAlg implements ITupleHasher
{
public function hash(ITuple $tuple)
return $this->call($tuple);
}