| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
BaseSet
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from |
|||
|
|||
| _data | |||
|
Inherited from |
|||
|
|||
|
Return string representation of a set. This looks like 'Set([<list of elements>])'.
|
Return string representation of a set. This looks like 'Set([<list of elements>])'.
|
Return an iterator over the elements or a set. This is the keys iterator for the underlying dict. |
Return the union of two sets as a new set. (I.e. all elements that are in either set.) |
Return the union of two sets as a new set. (I.e. all elements that are in either set.) |
Return the intersection of two sets as a new set. (I.e. all elements that are in both sets.) |
Return the intersection of two sets as a new set. (I.e. all elements that are in both sets.) |
Return the symmetric difference of two sets as a new set. (I.e. all elements that are in exactly one of the sets.) |
Return the symmetric difference of two sets as a new set. (I.e. all elements that are in exactly one of the sets.) |
Return the difference of two sets as a new Set. (I.e. all elements that are in this set and not in the other.) |
Return the difference of two sets as a new Set. (I.e. all elements that are in this set and not in the other.) |
Report whether an element is a member of a set. (Called in response to the expression `element in self'.) |
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Tue Aug 12 07:32:50 2008 | http://epydoc.sourceforge.net |