xref: /template/strap/vendor/antlr/antlr4-php-runtime/src/Comparison/Equivalence.php (revision 977ce05d19d8dab0a70c9a27f8da0b7039299e82)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Comparison;
6
7interface Equivalence extends Equatable
8{
9    public function equivalent(Hashable $left, Hashable $right) : bool;
10    public function hash(Hashable $value) : int;
11}
12