mirror of
https://github.com/yasuhirokimura/db18
synced 2026-06-08 18:29:23 +00:00
12 lines
137 B
Erlang
12 lines
137 B
Erlang
-module(util).
|
|
-export([match/2]).
|
|
|
|
match({P1,P2}, {P1,P2}) ->
|
|
true;
|
|
|
|
match({P1,P2}, {P2,P1}) ->
|
|
true;
|
|
|
|
match(_,_) ->
|
|
false.
|