Module sets :: Class ImmutableSet
[hide private]
[frames] | no frames]

type ImmutableSet

object --+    
         |    
   BaseSet --+
             |
            ImmutableSet

Immutable set class.

Instance Methods [hide private]
 
__init__(self, iterable=None)
Construct an immutable set from an optional iterable.
 
__hash__(self)
 
__getstate__(self)
 
__setstate__(self, state)

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 BaseSet (private): _binary_sanity_check, _compute_hash, _repr, _update

Properties [hide private]
  _hashcode

Inherited from BaseSet (private): _data

Method Details [hide private]

__init__(self, iterable=None)
(Constructor)

 

Construct an immutable set from an optional iterable.

Overrides: BaseSet.__init__

__hash__(self)
(Hashing function)

 
Overrides: object.__hash__
(inherited documentation)