Currently this is False.
Probably should be True and probably TrueTie should be a subclass of set, similar to my comment on #17 (comment)?
So that TrueTie([1, 0]) == TrueTie((0, 1)) == TrueTie({1, 0, 1}) is also True.
TrueTie([1, 0]) == TrueTie([1, 0])
Out[53]: False
set([0, 1]) == set((1, 0)) == set({1, 0, 1})
Out[54]: True
Currently this is False.
Probably should be True and probably TrueTie should be a subclass of
set, similar to my comment on #17 (comment)?So that
TrueTie([1, 0]) == TrueTie((0, 1)) == TrueTie({1, 0, 1})is also True.