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