Home | Trees | Indices | Help |
|
---|
|
object --+ | BaseSet
Common base class for mutable and immutable sets.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
_data | |||
Inherited from |
|
This is an abstract class.
|
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 Mon Jun 14 22:07:45 2010 | http://epydoc.sourceforge.net |