|
|
|
|
|
|
|
|
|
__ior__(self,
other)
Update a set with the union of itself and another. |
source code
|
|
|
union_update(self,
other)
Update a set with the union of itself and another. |
source code
|
|
|
__iand__(self,
other)
Update a set with the intersection of itself and another. |
source code
|
|
|
intersection_update(self,
other)
Update a set with the intersection of itself and another. |
source code
|
|
|
__ixor__(self,
other)
Update a set with the symmetric difference of itself and another. |
source code
|
|
|
symmetric_difference_update(self,
other)
Update a set with the symmetric difference of itself and another. |
source code
|
|
|
__isub__(self,
other)
Remove all elements of another set from this set. |
source code
|
|
|
difference_update(self,
other)
Remove all elements of another set from this set. |
source code
|
|
|
update(self,
iterable)
Add all values from an iterable (such as a list or file). |
source code
|
|
|
clear(self)
Remove all elements from this set. |
source code
|
|
|
|
|
|
|
|
|
pop(self)
Remove and return an arbitrary set element. |
source code
|
|
|
|
|
|
Inherited from BaseSet :
__and__ ,
__cmp__ ,
__contains__ ,
__copy__ ,
__deepcopy__ ,
__eq__ ,
__ge__ ,
__gt__ ,
__iter__ ,
__le__ ,
__len__ ,
__lt__ ,
__ne__ ,
__or__ ,
__repr__ ,
__str__ ,
__sub__ ,
__xor__ ,
copy ,
difference ,
intersection ,
issubset ,
issuperset ,
symmetric_difference ,
union
Inherited from object :
__delattr__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|