An Equatable conformance should fulfill the Reflexive relation property meaning:
- a == ais always- true(Reflexivity)
- a == bimplies- b == a(Symmetry)
- a == band- b == cimplies- a == 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)