rename Equals to Eq
[scpubgit/DX.git] / lib / DX / Predicate / Eq.pm
1 package DX::Predicate::Eq;
2
3 use DX::Class;
4
5 with 'DX::Role::Predicate';
6
7 sub _possible_resolution_list {
8   shift->_make_equal(@_)
9 }
10
11 1;