Example #1
0
 def __xor__(self, that):
     return SortedSet(self._view ^ that)
Example #2
0
 def __sub__(self, that):
     return SortedSet(self._view - that)
Example #3
0
 def __and__(self, that):
     return SortedSet(self._view & that)
Example #4
0
 def __or__(self, that):
     return SortedSet(self._view | that)
Example #5
0
 def keys(self):
     return SortedSet(self._dict)