Home | History | Annotate | Download | only in python2.7

Lines Matching refs:elements

13 their elements have a definite order; sets on the other hand don't
82 """Return the number of elements of a set."""
88 This looks like 'Set([<list of elements>])'.
96 elements = self._data.keys()
98 elements.sort()
99 return '%s(%r)' % (self.__class__.__name__, elements)
102 """Return an iterator over the elements or a set.
181 (I.e. all elements that are in either set.)
190 (I.e. all elements that are in either set.)
199 (I.e. all elements that are in both sets.)
208 (I.e. all elements that are in both sets.)
222 (I.e. all elements that are in exactly one of the sets.)
231 (I.e. all elements that are in exactly one of the sets.)
250 (I.e. all elements that are in this set and not in the other.)
259 (I.e. all elements that are in this set and not in the other.)
332 # the elements. This ensures that the hash code does not depend
333 # on the order in which elements are added to the set. This is
472 """Remove all elements
478 """Remove all elements of another set from this set."""
494 """Remove all elements from this set."""