An Equatable conformance should fulfill the Reflexive relation property meaning:
a == a
is alwaystrue
(Reflexivity)a == b
impliesb == a
(Symmetry)a == b
andb == c
impliesa == c
(Transitivity)
An Equatable conformance should fulfill the Reflexive relation property meaning:
a == a
is always true
(Reflexivity)a == b
implies b == a
(Symmetry)a == b
and b == c
implies a == c
(Transitivity)