Indexed set class.
|
new empty set object
|
|
object
|
|
|
|
|
bool
|
|
|
|
update(self,
iterable)
Update the set by adding all items in an iterable to it. |
source code
|
|
|
|
add(self,
item)
Add an item to the set, verifying that it has the required index
attribute and that no other item in the set has the same index. |
source code
|
|
|
|
|
list
|
|
bool
|
has_key(self,
key)
Return whether this set contains an item with a given index. |
source code
|
|
|
Inherited from set:
__and__,
__cmp__,
__eq__,
__ge__,
__getattribute__,
__gt__,
__iand__,
__ior__,
__isub__,
__iter__,
__ixor__,
__le__,
__len__,
__lt__,
__ne__,
__new__,
__or__,
__rand__,
__reduce__,
__repr__,
__ror__,
__rsub__,
__rxor__,
__sizeof__,
__sub__,
__xor__,
clear,
copy,
difference,
difference_update,
discard,
intersection,
intersection_update,
isdisjoint,
issubset,
issuperset,
pop,
symmetric_difference,
symmetric_difference_update,
union
Inherited from object:
__delattr__,
__format__,
__reduce_ex__,
__setattr__,
__str__,
__subclasshook__
|